Automattic\WooCommerce\Blueprint\Importers
ImportInstallTheme::check_step_capabilities
Check if the current user has the required capabilities for this step.
Метод класса: ImportInstallTheme{}
Хуков нет.
Возвращает
true|false
. True if the user has the required capabilities. False otherwise.
Использование
$ImportInstallTheme = new ImportInstallTheme(); $ImportInstallTheme->check_step_capabilities( $schema ): bool;
- $schema(объект) (обязательный)
- The schema to process.
Код ImportInstallTheme::check_step_capabilities() ImportInstallTheme::check step capabilities WC 10.0.2
public function check_step_capabilities( $schema ): bool { return current_user_can( 'install_themes' ); }