コード例 #1
0
ファイル: accounts.php プロジェクト: badukboy/BCIT
 /**
  * Constructor.
  */
 function __construct()
 {
     parent::__construct();
     $this->setTable('accounts', 'id');
 }
コード例 #2
0
 function __construct()
 {
     parent::__construct();
     $this->setTable('contacts', 'id');
 }
コード例 #3
0
 function __construct()
 {
     parent::__construct();
     $this->setTable('tbl_posts', 'postID');
 }
コード例 #4
0
ファイル: invoices.php プロジェクト: badukboy/BCIT
 /**
  * Constructor.
  */
 function __construct()
 {
     parent::__construct();
     $this->setTable('invoices', 'id');
 }
コード例 #5
0
ファイル: vendors.php プロジェクト: badukboy/BCIT
 /**
  * Constructor.
  */
 function __construct()
 {
     parent::__construct();
     $this->setTable('vendors', 'id');
 }
コード例 #6
0
 function __construct()
 {
     parent::__construct();
     $this->setTable('tbl_categories', 'categoryID');
 }
コード例 #7
0
 function __construct()
 {
     parent::__construct();
     $this->setTable('tbl_blogdescriptor', 'id');
 }
コード例 #8
0
 function __construct()
 {
     parent::__construct();
     $this->setTable('tbl_images', 'imageID');
 }
コード例 #9
0
 function __construct()
 {
     parent::__construct();
     $this->setTable('tbl_contactus', 'contactID');
 }
コード例 #10
0
ファイル: customers.php プロジェクト: badukboy/BCIT
 /**
  * Constructor.
  */
 function __construct()
 {
     parent::__construct();
     $this->setTable('customers', 'id');
 }
コード例 #11
0
 function __construct()
 {
     parent::__construct();
     $this->setTable('tbl_tags', 'tagID');
 }
コード例 #12
0
 function __construct()
 {
     parent::__construct();
     $this->setTable('tbl_users', 'userID');
 }