Automattic\WooCommerce\Admin\Features\Blueprint\Exporters

ExportWCCoreProfilerOptions::check_step_capabilitiespublicWC 1.0

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() WC 10.5.0

public function check_step_capabilities(): bool {
	return current_user_can( 'manage_woocommerce' );
}