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


PHP JDocument::setDescription方法代碼示例

本文整理匯總了PHP中JDocument::setDescription方法的典型用法代碼示例。如果您正苦於以下問題:PHP JDocument::setDescription方法的具體用法?PHP JDocument::setDescription怎麽用?PHP JDocument::setDescription使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在JDocument的用法示例。


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

示例1: _prepareDocument

 /**
  * Prepares the document
  */
 protected function _prepareDocument()
 {
     $app = JFactory::getApplication();
     $menus = $app->getMenu();
     $title = null;
     // Because the application sets a default page title,
     // we need to get it from the menu item itself
     $menu = $menus->getActive();
     if ($menu) {
         $this->params->get('page_heading', $this->params->get('page_title', $menu->title));
     }
     $title = $this->params->get('page_title', '');
     if (empty($title)) {
         $title = $app->getCfg('sitename');
     } elseif ($app->getCfg('sitename_pagetitles', 0) == 1) {
         $title = JText::sprintf('JPAGETITLE', $app->getCfg('sitename'), $title);
     } elseif ($app->getCfg('sitename_pagetitles', 0) == 2) {
         $title = JText::sprintf('JPAGETITLE', $title, $app->getCfg('sitename'));
     }
     $this->document->setTitle($title);
     if ($this->params->get('menu-meta_description')) {
         $this->document->setDescription($this->params->get('menu-meta_description'));
     }
     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'));
     }
 }
開發者ID:sansandeep143,項目名稱:av,代碼行數:33,代碼來源:view.html.php

示例2: testSetDescription

	/**
	 * @todo Implement testSetDescription().
	 */
	public function testSetDescription() {
		$this->object = new JDocument;

		$this->object->setDescription('Joomla Rocks');

		$this->assertThat(
			$this->object->description,
			$this->equalTo('Joomla Rocks')
		);
	}
開發者ID:realityking,項目名稱:JAJAX,代碼行數:13,代碼來源:JDocumentTest.php

示例3: testEnsureSetDescriptionReturnsThisObject

 /**
  * @testdox  Test that setDescription returns an instance of $this
  */
 public function testEnsureSetDescriptionReturnsThisObject()
 {
     $this->assertSame($this->object, $this->object->setDescription('Joomla!'));
 }
開發者ID:n3t,項目名稱:joomla-cms,代碼行數:7,代碼來源:JDocumentTest.php


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