Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList
Document::expandShorthands
Устарела с версии since 8.7.0, will be removed without substitution in version 9.0 in #511. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Expands all shorthand properties to their long value.
Метод класса: Document{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Document = new Document(); $Document->expandShorthands();
Список изменений
| Устарела | С версии 8.7.0 | , will be removed without substitution in version 9.0 in #511 |
Код Document::expandShorthands() Document::expandShorthands WC 10.4.3
public function expandShorthands()
{
foreach ($this->getAllDeclarationBlocks() as $oDeclaration) {
$oDeclaration->expandShorthands();
}
}