WC_Helper_Admin::get_permission()
The Extensions page can only be accessed by users with the manage_woocommerce capability. So the API mimics that behavior.
Метод класса: WC_Helper_Admin{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$result = WC_Helper_Admin::get_permission();
Код WC_Helper_Admin::get_permission() WC Helper Admin::get permission WC 9.4.2
public static function get_permission() { return current_user_can( 'manage_woocommerce' ); }