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


PHP OutputPage::setHTMLTitle方法代碼示例

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


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

示例1: insertTitle

 public static function insertTitle(OutputPage &$out)
 {
     $title = $out->getHTMLTitle();
     $title = str_replace(' - WebPlatform Docs', '', $title);
     $page_path = explode('/', $title);
     $topic = $page_path[0];
     $pagename = array_pop($page_path);
     $new_title = "{$pagename} · {$topic} · WPD · WebPlatform.org";
     $out->setHTMLTitle($new_title);
     return true;
 }
開發者ID:renoirb,項目名稱:mediawiki-1,代碼行數:11,代碼來源:TopicTitle.php

示例2: modifyHTML

 /**
  * Modify the HTML to set the relevant tags to the specified values
  *
  * This method is called by the BeforePageDisplay hook
  *
  * @param OutputPage $out
  */
 public static function modifyHTML($out)
 {
     //set title
     if (!empty(self::$title)) {
         switch (self::$title_mode) {
             case 'append':
                 $title = $out->getPageTitle() . self::$title_separator . self::$title;
                 break;
             case 'prepend':
                 $title = self::$title . self::$title_separator . $out->getPageTitle();
                 break;
             case 'replace':
             default:
                 $title = self::$title;
         }
         $out->setHTMLTitle($title);
         $out->addMeta("twitter:title", $title);
         $out->addHeadItem("og:title", "<meta property=\"og:title\" content=\"{$title}\" />" . "\n");
     }
     //set meta tags
     if (!empty(self::$meta)) {
         foreach (self::$meta as $name => $content) {
             if ($name == 'description') {
                 $out->addMeta($name, $content);
                 $out->addMeta("twitter:description", $content);
                 $out->addHeadItem("og:description", Html::element('meta', array('property' => 'og:description', 'content' => $content)) . "\n");
             } else {
                 $out->addMeta($name, $content);
             }
         }
     }
     //set property tags
     if (!empty(self::$property)) {
         foreach (self::$property as $property => $content) {
             $out->addHeadItem("{$property}", Html::element('meta', array('property' => $property, 'content' => $content)) . "\n");
         }
     }
     return true;
 }
開發者ID:tinymighty,項目名稱:wiki-seo,代碼行數:46,代碼來源:WikiSEO.body.php


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