コード例 #1
0
ファイル: template.php プロジェクト: hfmprs/JoomLeague
 /**
  * Method to load content template data
  *
  * @access	private
  * @return	boolean	True on success
  */
 function _loadData()
 {
     // Lets load the content if it doesn't already exist
     if (empty($this->_data)) {
         $this->_data = parent::getItem($this->_id);
         return (bool) $this->_data;
     }
     return true;
 }