Beispiel #1
0
 /**
  * getComponentInfo
  *
  * @return	array
  */
 public function getComponentInfo()
 {
     static $compdata = null;
     if (!$compdata) {
         $compdata = UpdateNgHelper::getComponentInfo();
         if (!$compdata) {
             $this->setError(JText::sprintf('COM_AUTOTWEET_MSG_ERROR_FILENOTFOUND', 'version information'));
             return null;
         }
     }
     return $compdata;
 }