本文整理汇总了PHP中JDocumentHtml::addStyleSheet方法的典型用法代码示例。如果您正苦于以下问题:PHP JDocumentHtml::addStyleSheet方法的具体用法?PHP JDocumentHtml::addStyleSheet怎么用?PHP JDocumentHtml::addStyleSheet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JDocumentHtml
的用法示例。
在下文中一共展示了JDocumentHtml::addStyleSheet方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: prepareDocument
/**
* Prepare document
*/
protected function prepareDocument()
{
//Escape strings for HTML output
$this->pageclass_sfx = htmlspecialchars($this->params->get('pageclass_sfx'));
// Prepare page heading
$this->preparePageHeading();
// Prepare page heading
$this->preparePageTitle();
// Meta Description
if ($this->params->get('menu-meta_description')) {
$this->document->setDescription($this->params->get('menu-meta_description'));
}
// Meta keywords
if ($this->params->get('menu-meta_keywords')) {
$this->document->setMetadata('keywords', $this->params->get('menu-meta_keywords'));
}
if ($this->params->get('robots')) {
$this->document->setMetadata('robots', $this->params->get('robots'));
}
// Head styles
$this->document->addStyleSheet('media/' . $this->option . '/css/site/style.css');
JHtml::_('behavior.tooltip');
}
示例2: setDocument
/**
* Method to set up the document properties
*
* @return void
*/
protected function setDocument()
{
$this->document->setTitle(JText::_('COM_USERIDEAS_DASHBOARD'));
$this->document->addStyleSheet("../media/" . $this->option . '/css/backend.style.css');
}