Automattic\WooCommerce\Vendor\Sabberworm\CSS\Property

Import::renderpublicWC 1.0

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

Хуков нет.

Возвращает

Строку.

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

$Import = new Import();
$Import->render( $oOutputFormat );
$oOutputFormat(OutputFormat|null) (обязательный)
.

Код Import::render() WC 10.5.0

public function render($oOutputFormat)
{
    return $oOutputFormat->comments($this) . "@import " . $this->oLocation->render($oOutputFormat)
        . ($this->sMediaQuery === null ? '' : ' ' . $this->sMediaQuery) . ';';
}