Automattic\WooCommerce\Vendor\Sabberworm\CSS\Property
Import::render
Метод класса: Import{}
Хуков нет.
Возвращает
Строку.
Использование
$Import = new Import(); $Import->render( $oOutputFormat );
- $oOutputFormat(OutputFormat|null) (обязательный)
- .
Код Import::render() Import::render WC 10.5.0
public function render($oOutputFormat)
{
return $oOutputFormat->comments($this) . "@import " . $this->oLocation->render($oOutputFormat)
. ($this->sMediaQuery === null ? '' : ' ' . $this->sMediaQuery) . ';';
}