ENHANCEMENT #6828 (Trac): Add a canonical link tag to the meta tags of Virtual Pages

See http://support.google.com/webmasters/bin/answer.py?hl=en&answer=139394
This commit is contained in:
Fred Condo 2012-03-02 10:59:15 -08:00
parent e96d6f5bd5
commit 10c171f1bb

View File

@ -96,6 +96,21 @@ class VirtualPage extends Page {
function ContentSource() {
return $this->CopyContentFrom();
}
/**
* For VirtualPage, add a canonical link tag linking to the original page
* See TRAC #6828 & http://support.google.com/webmasters/bin/answer.py?hl=en&answer=139394
*
* @param boolean $includeTitle Show default <title>-tag, set to false for custom templating
* @return string The XHTML metatags
*/
public function MetaTags($includeTitle = true) {
$tags = parent::MetaTags($includeTitle);
if ($this->CopyContentFrom()->ID) {
$tags .= "<link rel=\"canonical\" href=\"{$this->CopyContentFrom()->Link()}\" />\n";
}
return $tags;
}
function allowedChildren() {
if($this->CopyContentFrom()) {