当前位置: 首页>>代码示例>>PHP>>正文


PHP JDocumentHtml::addStyleSheet方法代码示例

本文整理汇总了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');
 }
开发者ID:bellodox,项目名称:VirtualCurrency,代码行数:26,代码来源:view.html.php

示例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');
 }
开发者ID:bellodox,项目名称:UserIdeas,代码行数:10,代码来源:view.html.php


注:本文中的JDocumentHtml::addStyleSheet方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。