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


PHP JDocumentHtml::setTitle方法代码示例

本文整理汇总了PHP中JDocumentHtml::setTitle方法的典型用法代码示例。如果您正苦于以下问题:PHP JDocumentHtml::setTitle方法的具体用法?PHP JDocumentHtml::setTitle怎么用?PHP JDocumentHtml::setTitle使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在JDocumentHtml的用法示例。


在下文中一共展示了JDocumentHtml::setTitle方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: setDocument

 /**
  * Method to set up the document properties
  *
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle($this->documentTitle);
     // Add scripts
     JHtml::_('behavior.tooltip');
     JHtml::_('behavior.formvalidation');
     $this->document->addScript('../media/' . $this->option . '/js/admin/' . String::strtolower($this->getName()) . '.js');
 }
开发者ID:bellodox,项目名称:GamificationPlatform,代码行数:13,代码来源:view.html.php

示例2: setDocument

 /**
  * Method to set up the document properties
  *
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle(JText::_('COM_CROWDFUNDING_IMPORT_MANAGER'));
     // Scripts
     JHtml::_('behavior.formvalidation');
     JHtml::_('bootstrap.tooltip');
     JHtml::_('Prism.ui.bootstrap2FileInput');
     $this->document->addScript('../media/' . $this->option . '/js/admin/' . JString::strtolower($this->getName()) . '.js');
 }
开发者ID:ITPrism,项目名称:CrowdfundingDistribution,代码行数:14,代码来源:view.html.php

示例3: setDocument

 /**
  * Method to set up the document properties
  *
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle(JText::_('COM_GAMIFICATION_TOOLS'));
     // Scripts
     JHtml::_('bootstrap.tooltip');
     JHtml::_('formbehavior.chosen', 'select');
     JHtml::_('Prism.ui.pnotify');
     $this->document->addScript('../media/' . $this->option . '/js/admin/' . strtolower($this->getName()) . '.js');
 }
开发者ID:ITPrism,项目名称:GamificationDistribution,代码行数:14,代码来源:view.html.php

示例4: setDocument

 /**
  * Method to set up the document properties
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle($this->documentTitle);
     // Scripts
     JHtml::_('behavior.formvalidation');
     JHtml::_('behavior.tooltip');
     JHtml::_('formbehavior.chosen', 'select');
     $this->document->addScript(JURI::root() . 'media/' . $this->option . '/js/admin/' . Joomla\String\String::strtolower($this->getName()) . '.js');
 }
开发者ID:Eautentik,项目名称:CrowdFunding,代码行数:13,代码来源:view.html.php

示例5: setDocument

 /**
  * Method to set up the document properties
  *
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle(JText::_('COM_VIRTUALCURRENCY_IMPORT_MANAGER'));
     $this->legend = JText::_("COM_VIRTUALCURRENCY_IMPORT_REAL_CURRENCY_DATA");
     // Scripts
     JHtml::_('behavior.formvalidation');
     JHtml::_('bootstrap.tooltip');
     JHtml::_('itprism.ui.bootstrap_fileuploadstyle');
     $this->document->addScript('../media/' . $this->option . '/js/admin/' . JString::strtolower($this->getName()) . '.js');
 }
开发者ID:bellodox,项目名称:VirtualCurrency,代码行数:15,代码来源:view.html.php

示例6: setDocument

 /**
  * Method to set up the document properties
  *
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle($this->documentTitle);
     // Add behaviors
     JHtml::_('bootstrap.tooltip');
     JHtml::_('behavior.formvalidation');
     JHtml::_('formbehavior.chosen', '#jform_country_id');
     JHtml::_('prism.ui.bootstrap2Typeahead');
     // Add scripts
     $this->document->addScript('../media/' . $this->option . '/js/admin/' . strtolower($this->getName()) . '.js');
 }
开发者ID:pashakiz,项目名称:crowdf,代码行数:16,代码来源:view.html.php

示例7: setDocument

 /**
  * Method to set up the document properties
  *
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle($this->documentTitle);
     // Add scripts
     JHtml::_('bootstrap.tooltip');
     JHtml::_('behavior.keepalive');
     JHtml::_('behavior.formvalidation');
     $d3Cdn = (bool) $this->params->get("d3_cdn", true);
     JHtml::_("prism.ui.d3", $d3Cdn);
     $js = "\n            cfProjectId = " . $this->item->id . ";\n        ";
     $this->document->addScriptDeclaration($js);
     $this->document->addScript('../media/' . $this->option . '/js/admin/' . JString::strtolower($this->getName()) . '.js');
 }
开发者ID:bellodox,项目名称:CrowdfundingFinance,代码行数:18,代码来源:view.html.php

示例8: preparePageTitle

 private function preparePageTitle()
 {
     $app = JFactory::getApplication();
     /** @var $app JApplicationSite */
     // Prepare page title
     //        $title = $this->params->get('page_title', $this->item->title);
     $title = $this->item->title;
     switch ($this->screen) {
         case "updates":
             $title .= " | " . JText::_("COM_CROWDFUNDING_UPDATES");
             break;
         case "comments":
             $title .= " | " . JText::_("COM_CROWDFUNDING_COMMENTS");
             break;
         case "funders":
             $title .= " | " . JText::_("COM_CROWDFUNDING_FUNDERS");
             break;
     }
     // Add title before or after Site Name
     if (!$title) {
         $title = $app->get('sitename');
     } elseif ($app->get('sitename_pagetitles', 0) == 1) {
         $title = JText::sprintf('JPAGETITLE', $app->get('sitename'), $title);
     } elseif ($app->get('sitename_pagetitles', 0) == 2) {
         $title = JText::sprintf('JPAGETITLE', $title, $app->get('sitename'));
     }
     $this->document->setTitle($title);
 }
开发者ID:phpsource,项目名称:CrowdFunding,代码行数:28,代码来源:view.html.php

示例9: preparePageTitle

 private function preparePageTitle()
 {
     // Prepare page title
     $title = $this->item->title;
     switch ($this->screen) {
         case 'updates':
             $title .= ' | ' . JText::_('COM_CROWDFUNDING_UPDATES');
             break;
         case 'comments':
             $title .= ' | ' . JText::_('COM_CROWDFUNDING_COMMENTS');
             break;
         case 'funders':
             $title .= ' | ' . JText::_('COM_CROWDFUNDING_FUNDERS');
             break;
     }
     // Add title before or after Site Name
     if (!$title) {
         $title = $this->app->get('sitename');
     } elseif ((int) $this->app->get('sitename_pagetitles', 0) === 1) {
         $title = JText::sprintf('JPAGETITLE', $this->app->get('sitename'), $title);
     } elseif ((int) $this->app->get('sitename_pagetitles', 0) === 2) {
         $title = JText::sprintf('JPAGETITLE', $title, $this->app->get('sitename'));
     }
     $this->document->setTitle($title);
 }
开发者ID:ITPrism,项目名称:CrowdfundingDistribution,代码行数:25,代码来源:view.html.php

示例10: preparePageTitle

 private function preparePageTitle()
 {
     $app = JFactory::getApplication();
     /** @var $app JApplicationSite */
     // If it is assigned to menu item, params will contains "page_title".
     // If it is not assigned, I will use the title of the item
     if ($this->params->get("page_title")) {
         $title = $this->params->get("page_title");
     } else {
         $seo = $this->params->get("seo_cat_to_title");
         switch ($seo) {
             case "1":
                 // Before page title
                 $title = $this->category->title . " | " . $this->item->title;
                 break;
             case "2":
                 // After page title
                 $title = $this->item->title . " | " . $this->category->title;
                 break;
             default:
                 // NONE
                 $title = $this->item->title;
                 break;
         }
     }
     // Add title before or after Site Name
     if (!$title) {
         $title = $app->get('sitename');
     } elseif ($app->get('sitename_pagetitles', 0) == 1) {
         $title = JText::sprintf('JPAGETITLE', $app->get('sitename'), $title);
     } elseif ($app->get('sitename_pagetitles', 0) == 2) {
         $title = JText::sprintf('JPAGETITLE', $title, $app->get('sitename'));
     }
     $this->document->setTitle($title);
 }
开发者ID:johngrange,项目名称:wookeyholeweb,代码行数:35,代码来源:view.html.php

示例11: setDocument

 /**
  * Method to set up the document properties
  *
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle($this->documentTitle);
     $layout = $this->getLayout();
     // Scripts
     JHtml::_('bootstrap.tooltip');
     $this->document->addScript('../media/' . $this->option . '/js/admin/' . JString::strtolower($this->getName()) . '.js');
     switch ($layout) {
         case "files":
             // HTML Helpers
             JHtml::_('itprism.ui.pnotify');
             JHtml::_("itprism.ui.joomla_helper");
             // Load language string in JavaScript
             JText::script('COM_CROWDFUNDING_DELETE_FILE_QUESTION');
             break;
     }
 }
开发者ID:phpsource,项目名称:CrowdFunding,代码行数:22,代码来源:view.html.php

示例12: setDocument

 /**
  * Method to set up the document properties
  *
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle(JText::_('COM_ITPMETA_GLOBAL_TAGS_MANAGER'));
     // Scripts
     JHtml::_('bootstrap.tooltip');
     JHtml::_('behavior.multiselect');
     JHtml::_('formbehavior.chosen', 'select');
     JHtml::_("Prism.ui.joomlaList");
 }
开发者ID:brenot,项目名称:forumdesenvolvimento,代码行数:14,代码来源:view.html.php

示例13: setDocument

 /**
  * Method to set up the document properties
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle(JText::_('COM_CROWDFUNDING_LOGS_MANAGER'));
     // Load language string in JavaScript
     JText::script('COM_CROWDFUNDING_DELETE_ALL_ITEMS');
     // Scripts
     JHtml::_('behavior.multiselect');
     JHtml::_('bootstrap.tooltip');
     JHtml::_('formbehavior.chosen', 'select');
     JHtml::_('prism.ui.joomlaList');
     $this->document->addScript('../media/' . $this->option . '/js/admin/' . JString::strtolower($this->getName()) . '.js');
 }
开发者ID:bellodox,项目名称:CrowdFunding,代码行数:16,代码来源:view.html.php

示例14: setDocument

 /**
  * Method to set up the document properties
  *
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle($this->documentTitle);
     // Scripts
     JHtml::_('behavior.keepalive');
     JHtml::_('behavior.formvalidation');
     JHtml::_('behavior.tooltip');
     JHtml::_('prism.ui.bootstrap2FileInput');
     JHtml::_('formbehavior.chosen', 'select');
     // Add scripts
     $this->document->addScript('../media/' . $this->option . '/js/admin/' . Joomla\String\String::strtolower($this->getName()) . '.js');
 }
开发者ID:pashakiz,项目名称:crowdf,代码行数:17,代码来源:view.html.php


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