Automattic\WooCommerce\Vendor\Sabberworm\CSS\RuleSet
DeclarationBlock::createBorderShorthand
Устарела с версии since 8.7.0, will be removed without substitution in version 9.0 in #511. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Combines border-color, border-style and border-width into border.
Should be run after create_dimensions_shorthand!
Метод класса: DeclarationBlock{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$DeclarationBlock = new DeclarationBlock(); $DeclarationBlock->createBorderShorthand();
Список изменений
| Устарела | С версии 8.7.0 | , will be removed without substitution in version 9.0 in #511 |
Код DeclarationBlock::createBorderShorthand() DeclarationBlock::createBorderShorthand WC 10.4.3
public function createBorderShorthand()
{
$aProperties = [
'border-width',
'border-style',
'border-color',
];
$this->createShorthandProperties($aProperties, 'border');
}