コード例 #1
0
 function homepageAttributes()
 {
     $aAttrs = parent::linkAttributes();
     if (common_config('nofollow', 'members')) {
         $aAttrs['rel'] = 'nofollow';
     }
     return $aAttrs;
 }
コード例 #2
0
ファイル: profileminilist.php プロジェクト: Grasia/bolotweet
 function linkAttributes()
 {
     $aAttrs = parent::linkAttributes();
     $aAttrs['title'] = $this->profile->getBestName();
     $aAttrs['rel'] = 'contact member';
     // @todo: member? always?
     $aAttrs['class'] = 'url';
     return $aAttrs;
 }
コード例 #3
0
ファイル: peopletagged.php プロジェクト: Grasia/bolotweet
 function linkAttributes()
 {
     // tagging people is healthy page-rank flow.
     return parent::linkAttributes();
 }