コード例 #1
0
ファイル: seo.php プロジェクト: hinashiki/fuelphp-seo
 /**
  * canonical
  *
  * @return string
  */
 public function canonical()
 {
     // not use when use noindex for seo
     if ($this->_noindex_flg === false and $this->_canonical_flg === true) {
         return Seo_Html::canonical($this->_canonical_uri);
     }
     return '';
 }