本文整理汇总了PHP中SiteTree::MarkupRel方法的典型用法代码示例。如果您正苦于以下问题:PHP SiteTree::MarkupRel方法的具体用法?PHP SiteTree::MarkupRel怎么用?PHP SiteTree::MarkupRel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SiteTree
的用法示例。
在下文中一共展示了SiteTree::MarkupRel方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: updateMetadata
/**
* @name updateMetadata
*
* Extends $owner Metdata() function with Authorship values.
*
* @param string $metadata
* @param SiteTree $owner
* @param SiteConfig $config
* @return string
*/
public function updateMetadata(&$metadata, $owner, $config)
{
// variables
// $config = SiteConfig::current_site_config();
// $owner = $this->owner;
$authors = $owner->Authors();
$metadata .= $owner->MarkupHeader('Google+ Authorship');
// Facebook Authors
foreach ($authors as $author) {
if ($author->FacebookProfileID) {
$metadata .= $owner->MarkupFacebook('article:author', $author->FacebookProfileID, false);
break;
}
}
// Google+ Authors
foreach ($authors as $author) {
if ($author->GoogleProfileID) {
$profile = 'https://plus.google.com/' . $author->GoogleProfileID . '/';
$metadata .= $owner->MarkupRel('author', $profile);
// @todo kinda - Google+ does not support multiple authors - break loop
break;
}
}
// Google+ Publisher
if ($config->GoogleProfileID) {
$profile = 'https://plus.google.com/' . $config->GoogleProfileID . '/';
$metadata .= $owner->MarkupRel('publisher', $profile);
}
// return
return $metadata;
}
开发者ID:Graphiques-Digitale,项目名称:silverstripe-seo-google-plus-authorship,代码行数:41,代码来源:SEO_Authorship_SiteTree_DataExtension.php