Ejemplo n.º 1
0
 public function getTable($name = 'Goods', $prefix = 'Table', $options = array())
 {
     parent::getTable($name, $prefix, $options);
 }
Ejemplo n.º 2
0
 /**
  * Returns a reference to the a Table object, always creating it.
  *
  * @param    type    The table type to instantiate
  * @param    string    A prefix for the table class name. Optional.
  * @param    array    Configuration array for model. Optional.
  * @return   JTable    A database object
  */
 public function getTable($type = null, $prefix = null, $config = array())
 {
     $prefix = $prefix ? $prefix : ucfirst($this->component) . 'Table';
     $type = $type ? $type : $this->item_name;
     return parent::getTable($type, $prefix, $config);
 }
Ejemplo n.º 3
0
 public function getTable($name = '', $prefix = 'Table', $options = array())
 {
     return parent::getTable('sliComment', 'JTable');
 }