Automattic\WooCommerce\DataBase\Migrations\CustomOrderTable
CLIRunner::is_enabled()
Check if the COT feature is enabled.
Метод класса: CLIRunner{}
Хуков нет.
Возвращает
true|false
. Whether the COT feature is enabled.
Использование
// private - только в коде основоного (родительского) класса $result = $this->is_enabled( $log ) : bool;
- $log(true|false)
- Optionally log a error message.
По умолчанию: true
Код CLIRunner::is_enabled() CLIRunner::is enabled WC 7.5.1
private function is_enabled( $log = true ) : bool { if ( ! $this->controller->is_feature_visible() ) { if ( $log ) { WP_CLI::log( sprintf( // translators: %s - link to testing instructions webpage. __( 'Custom order table usage is not enabled. If you are testing, you can enable it by following the testing instructions in %s', 'woocommerce' ), 'https://developer.woocommerce.com/' // TODO: Change the link when testing instructin page is live. ) ); } } return $this->controller->is_feature_visible(); }