예제 #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;
     }
 }