Automattic\WooCommerce\Vendor\Sabberworm\CSS\Property
Import::render
Method of the class: Import{}
No Hooks.
Returns
String.
Usage
$Import = new Import(); $Import->render( $oOutputFormat );
- $oOutputFormat(OutputFormat|null) (required)
- .
Import::render() Import::render code WC 10.7.0
public function render($oOutputFormat)
{
return $oOutputFormat->comments($this) . "@import " . $this->oLocation->render($oOutputFormat)
. ($this->sMediaQuery === null ? '' : ' ' . $this->sMediaQuery) . ';';
}