コード例 #1
0
ファイル: Email.php プロジェクト: GruppoMeta/Movio
 function getContent()
 {
     $tagContent = trim($this->getText());
     if ($this->getAttribute('makeLink') && !empty($tagContent)) {
         return org_glizy_helpers_Link::makeEmailLink($tagContent);
     } else {
         return $tagContent;
     }
 }