當前位置: 首頁>>代碼示例>>PHP>>正文


PHP JDocumentHtml類代碼示例

本文整理匯總了PHP中JDocumentHtml的典型用法代碼示例。如果您正苦於以下問題:PHP JDocumentHtml類的具體用法?PHP JDocumentHtml怎麽用?PHP JDocumentHtml使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了JDocumentHtml類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testRender

 /**
  * Test JDocumentRendererHtmlModules::render
  *
  * @return  void
  *
  * @since   3.6
  */
 public function testRender()
 {
     $document = new JDocumentHtml();
     $renderer = $document->loadRenderer('modules');
     $params = array('name' => 'position-0', 'style' => 'xhtml');
     $this->callbackExecuted = false;
     $output = $renderer->render('position-0', $params);
     $htmlClean = trim(preg_replace('~>\\s+<~', '><', $output));
     $this->assertTrue($this->callbackExecuted, 'onAfterRenderModules event is not executed');
     $html = '<div class="moduletable"><h3>Search</h3><div class="search mod_search63">' . '<form action="index.php" method="post" class="form-inline">' . '<label for="mod-search-searchword63" class="element-invisible">Search ...</label>' . '<input name="searchword" id="mod-search-searchword63" maxlength="200"  ' . 'class="inputbox search-query" type="search" size="20" placeholder="Search ..." />' . '<input type="hidden" name="task" value="search" /><input type="hidden" name="option" value="com_search" />' . '<input type="hidden" name="Itemid" value="" /></form></div></div>';
     $this->assertEquals($html, $htmlClean, 'render output does not match expected content');
 }
開發者ID:eshiol,項目名稱:joomla-cms,代碼行數:19,代碼來源:JDocumentRendererHtmlModulesTest.php

示例2: 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

示例3: setDocument

 protected function setDocument()
 {
     // Add scripts
     JHtml::_('bootstrap.tooltip');
     JHtml::_('behavior.formvalidation');
     JHtml::_('formbehavior.chosen', 'select');
     $this->document->addScript('../media/' . $this->option . '/js/admin/' . $this->getName() . '.js');
 }
開發者ID:brenot,項目名稱:forumdesenvolvimento,代碼行數:8,代碼來源:view.html.php

示例4: 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

示例5: 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

示例6: 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

示例7: 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

示例8: 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

示例9: 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

示例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: 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

示例12: addFavicon

 /**
  * addFavicon
  *
  * @return  void
  */
 protected static function addFavicon()
 {
     // Favicon
     if ('html' == static::$template->getType()) {
         static::$template->addFavicon(static::$template->baseurl . '/templates/' . static::$template->template . '/images/favicon.ico');
     }
 }
開發者ID:lyrasoft,項目名稱:lyrasoft.github.io,代碼行數:12,代碼來源:Template.php

示例13: 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

示例14: 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

示例15: setDocument

 /**
  * Method to set up the document properties
  *
  * @return void
  */
 protected function setDocument()
 {
     $this->document->setTitle(JText::_('COM_IDENTITYPROOF_USERS_MANAGER'));
     // Scripts
     JHtml::_('behavior.multiselect');
     JHtml::_('bootstrap.tooltip');
     JHtml::_('formbehavior.chosen', 'select');
     JHtml::_('itprism.ui.joomla_list');
 }
開發者ID:xop32,項目名稱:Proof-of-Identity,代碼行數:14,代碼來源:view.html.php


注:本文中的JDocumentHtml類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。