Automattic\WooCommerce\Vendor\Sabberworm\CSS\Value
CSSString::render
Method of the class: CSSString{}
No Hooks.
Returns
String.
Usage
$CSSString = new CSSString(); $CSSString->render( $oOutputFormat );
- $oOutputFormat(OutputFormat|null) (required)
- .
CSSString::render() CSSString::render code WC 10.7.0
public function render($oOutputFormat)
{
$sString = addslashes($this->sString);
$sString = str_replace("\n", '\A', $sString);
return $oOutputFormat->getStringQuotingType() . $sString . $oOutputFormat->getStringQuotingType();
}