示例#1
0
 /**
  * Joom!Fish Controler for the Control Panel
  * @param array		configuration
  * @return joomfishTasker
  */
 function __construct($config = array())
 {
     parent::__construct($config);
     $this->registerTask('show', 'display');
     // ensure DB cache table is created and up to date
     JLoader::import('helpers.controllerHelper', JOOMFISH_ADMINPATH);
     JLoader::import('classes.JCacheStorageJFDB', JOOMFISH_ADMINPATH);
     JoomfishControllerHelper::_checkDBCacheStructure();
     JoomfishControllerHelper::_checkDBStructure();
 }