Automattic\WooCommerce\Blocks\Domain
Bootstrap::is_built() protected WC 1.0
See if files have been built or not.
{} Это метод класса: Bootstrap{}
Хуков нет.
Возвращает
true/false
. Null. Ничего.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->is_built();
Код Bootstrap::is_built() Bootstrap::is built WC 5.1.0
protected function is_built() {
return file_exists(
$this->package->get_path( 'build/featured-product.js' )
);
}