Automattic\WooCommerce\Admin\Features\Blueprint\Exporters
ExportWCCoreProfilerOptions::check_step_capabilities
Check if the current user has the required capabilities for this step.
Метод класса: ExportWCCoreProfilerOptions{}
Хуков нет.
Возвращает
true|false. True if the user has the required capabilities. False otherwise.
Использование
$ExportWCCoreProfilerOptions = new ExportWCCoreProfilerOptions(); $ExportWCCoreProfilerOptions->check_step_capabilities(): bool;
Код ExportWCCoreProfilerOptions::check_step_capabilities() ExportWCCoreProfilerOptions::check step capabilities WC 10.5.0
public function check_step_capabilities(): bool {
return current_user_can( 'manage_woocommerce' );
}