ACF_Rest_Api::is_admin_mode()
todo - this should check for a flag and validate a nonce to ensure we are in admin mode. todo - consider/discuss handling this in the request object instead.
Метод класса: ACF_Rest_Api{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
// private - только в коде основоного (родительского) класса $result = $this->is_admin_mode( $data );
- $data (обязательный)
- -
Код ACF_Rest_Api::is_admin_mode() ACF Rest Api::is admin mode ACF 6.0.4
private function is_admin_mode( $data ) { return isset( $data['_acf_admin_mode'] ) && $data['_acf_admin_mode']; }