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


PHP SiteTree::AbsoluteLink方法代碼示例

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


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

示例1: updateMetadata

 /**
  * @name updateMetadata
  *
  * Updates metadata with icons.
  *
  * @param SiteConfig $config
  * @param SiteTree $owner
  * @param $metadata
  * @return void
  */
 public function updateMetadata(SiteConfig $config, SiteTree $owner, &$metadata)
 {
     // decode into array
     $data = json_decode($owner->OpenGraphData, true);
     // check for data or throw an error
     if ($data) {
         // check if off
         if ($data['og:type'] !== 'off') {
             // Header
             $metadata .= $owner->MarkupComment('Open Graph');
             // Type
             $metadata .= $owner->MarkupOpenGraph('og:type', $data['og:type']);
             // URL
             $metadata .= $owner->MarkupOpenGraph('og:url', $owner->AbsoluteLink());
             // Site Name
             $siteName = $data['og:site_name'] ? $data['og:site_name'] : $config->Title;
             $metadata .= $owner->MarkupOpenGraph('og:site_name', $siteName, true);
             // Title
             $title = $data['og:title'] ? $data['og:title'] : $owner->Title;
             $metadata .= $owner->MarkupOpenGraph('og:title', $title, true);
             // Description
             $description = $data['og:description'] ? $data['og:description'] : $owner->GenerateDescription();
             $metadata .= $owner->MarkupOpenGraph('og:description', $description, true);
             // Image
             if ($owner->OpenGraphImage()->exists()) {
                 $metadata .= $owner->MarkupOpenGraph('og:image', $owner->OpenGraphImage()->getAbsoluteURL());
             }
         } else {
             // OFF
             $metadata .= $owner->MarkupComment('Open Graph [ off ]');
         }
     } else {
         // ERROR
         $metadata .= $owner->MarkupComment('Open Graph [ error ]');
     }
 }
開發者ID:graphiques-digitale,項目名稱:silverstripe-seo-open-graph,代碼行數:46,代碼來源:SEO_OpenGraph_SiteTree_DataExtension.php

示例2: updateMetadata

 /**
  * Updates metadata fields.
  *
  * @param SiteConfig $config
  * @param SiteTree $owner
  * @param string $metadata
  *
  * @return void
  */
 public function updateMetadata(SiteConfig $config, SiteTree $owner, &$metadata)
 {
     // metadata
     $metadata .= $owner->MarkupComment('Metadata');
     // charset
     if ($config->CharsetEnabled()) {
         $metadata .= '<meta charset="' . $config->Charset() . '" />' . PHP_EOL;
     }
     // canonical
     if ($config->CanonicalEnabled()) {
         $metadata .= $owner->MarkupLink('canonical', $owner->AbsoluteLink());
     }
     // title
     if ($config->TitleEnabled()) {
         $metadata .= '<title>' . $owner->encodeContent($owner->GenerateTitle(), $config->Charset()) . '</title>' . PHP_EOL;
     }
     // description
     if ($description = $owner->GenerateDescription()) {
         $metadata .= $owner->MarkupMeta('description', $description, $config->Charset());
     }
     // extra metadata
     if ($config->ExtraMetaEnabled()) {
         $metadata .= $owner->MarkupComment('Extra Metadata');
         $metadata .= $owner->GenerateExtraMeta();
     }
 }
開發者ID:graphiques-digitale,項目名稱:silverstripe-seo-metadata,代碼行數:35,代碼來源:SEO_Metadata_SiteTree_DataExtension.php


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