Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList
Document::render
Overrides render() to make format argument optional.
Метод класса: Document{}
Хуков нет.
Возвращает
Строку.
Использование
$Document = new Document(); $Document->render( $oOutputFormat );
- $oOutputFormat(OutputFormat|null)
- .
По умолчанию: null
Код Document::render() Document::render WC 10.4.3
public function render($oOutputFormat = null)
{
if ($oOutputFormat === null) {
$oOutputFormat = new OutputFormat();
}
return $oOutputFormat->comments($this) . $this->renderListContents($oOutputFormat);
}