Automattic\WooCommerce\Vendor\Sabberworm\CSS\Value
CalcRuleValueList{}└─ RuleValueList
Хуков нет.
Использование
$CalcRuleValueList = new CalcRuleValueList(); // use class methods
Методы
- public __construct($iLineNo = 0)
- public render($oOutputFormat)
Код CalcRuleValueList{} CalcRuleValueList{} WC 10.8.1
class CalcRuleValueList extends RuleValueList
{
/**
* @param int $iLineNo
*/
public function __construct($iLineNo = 0)
{
parent::__construct(',', $iLineNo);
}
/**
* @param OutputFormat|null $oOutputFormat
*
* @return string
*/
public function render($oOutputFormat)
{
return $oOutputFormat->implode(' ', $this->aComponents);
}
}