示例#1
0
 function DSCTableContent(&$db)
 {
     $tbl_key = 'id';
     $tbl_suffix = 'content';
     $this->set('_suffix', $tbl_suffix);
     parent::__construct("#__{$tbl_suffix}", $tbl_key, $db);
 }
示例#2
0
文件: _base.php 项目: annggeel/tienda
 /**
  * constructor
  */
 function __construct($tbl_name, $tbl_key, &$db)
 {
     parent::__construct($tbl_name, $tbl_key, $db);
     // set table properties based on table's fields
     //$this->setTableProperties();
 }
示例#3
0
 /**
  * constructor
  */
 function __construct($tbl_name, $tbl_key, &$db)
 {
     parent::__construct($tbl_name, $tbl_key, $db);
 }