Automattic\WooCommerce\Internal\DependencyManagement
ExtendedContainer::is_class_allowed() protected WC 1.0
Checks to see whether or not a class is allowed to be registered.
{} Это метод класса: ExtendedContainer{}
Хуков нет.
Возвращает
true/false. True if the class is allowed to be registered, false otherwise.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->is_class_allowed( $class_name ): bool;
- $class_name(строка) (обязательный)
- The class to check.
Код ExtendedContainer::is_class_allowed() ExtendedContainer::is class allowed WC 4.9.0
protected function is_class_allowed( string $class_name ): bool {
return StringUtil::starts_with( $class_name, $this->woocommerce_namespace, false ) || in_array( $class_name, $this->registration_whitelist, true );
}