*/ public function getTitle(){ return $this->get('title'); } /** * Function to get the alternative text for the Image * @return */ public function getAltText(){ return $this->get('alt'); } /** * Function to get the Image file path * @return */ public function getImagePath(){ return Vtiger_Theme::getImagePath($this->get('imagename')); } /** * Function to get the Image file name * @return */ public function getImageFileName(){ return $this->get('imagename'); } }