Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList

Document::getAllSelectorspublicWC 1.0

Устарела с версии 9.0. Больше не поддерживается и может быть удалена. Используйте `getAllDeclarationBlocks()`.

Gets all DeclarationBlock objects recursively.

Метод класса: Document{}

Хуков нет.

Возвращает

Массив. DeclarationBlock>

Использование

$Document = new Document();
$Document->getAllSelectors();

Список изменений

Устарела will be removed in version 9.0; use getAllDeclarationBlocks() instead

Код Document::getAllSelectors() WC 10.9.1

public function getAllSelectors()
{
    return $this->getAllDeclarationBlocks();
}