예제 #1
0
파일: accounts.php 프로젝트: badukboy/BCIT
 /**
  * Constructor.
  */
 function __construct()
 {
     parent::__construct();
     $this->setTable('accounts', 'id');
 }
 function __construct()
 {
     parent::__construct();
     $this->setTable('contacts', 'id');
 }
 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');
 }
 function __construct()
 {
     parent::__construct();
     $this->setTable('tbl_categories', 'categoryID');
 }
 function __construct()
 {
     parent::__construct();
     $this->setTable('tbl_blogdescriptor', 'id');
 }
예제 #8
0
 function __construct()
 {
     parent::__construct();
     $this->setTable('tbl_images', 'imageID');
 }
 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');
 }