示例#1
0
文件: home.php 项目: glauberm/cinevi
 /**
  * Returns a reference to the a Table object, always creating it.
  *
  * @param   string $type   The table type to instantiate
  * @param   string $prefix A prefix for the table class name. Optional.
  * @param   array  $config Configuration array for model. Optional.
  *
  * @return  JTable    A database object
  */
 public function getTable($type = 'Cron', $prefix = 'FabrikTable', $config = array())
 {
     $config['dbo'] = FabrikWorker::getDbo(true);
     return parent::getTable($type, $prefix, $config);
 }