コード例 #1
0
ファイル: geoCode.php プロジェクト: bbutlerfrog/benfrogs-pad
 function __construct()
 {
     parent::__construct('sakila');
     //parse ini file to get key to Google geocoder API
     $parameters = parse_ini_file('../config/geocode.ini');
     $this->geoKey = $parameters['geoKey'];
 }
コード例 #2
0
ファイル: dbFacade.php プロジェクト: robertbanh/mrmilestone
 public function __construct()
 {
     parent::__construct();
     parent::connect();
     // debug
     //parent::dump();
 }
コード例 #3
0
ファイル: class.dashboard.php プロジェクト: TheHanif/POS-10
 function __construct()
 {
     parent::__construct();
     $this->table_sale = 'sale';
     $this->table_sale_product = 'sale_product';
     $this->table_profitloss = 'accounts_profitloss';
 }
コード例 #4
0
ファイル: mysqli.php プロジェクト: biggtfish/Sandbox
 function __construct($db_name, $db_user, $db_pass, $db_host, $db_pre)
 {
     parent::__construct($db_name, $db_user, $db_pass, $db_host, $db_pre);
     $this->db = new mysqli($db_host, $db_user, $db_pass, $db_name);
     if (!$this->db->select_db($db_name)) {
         $this->db = false;
     }
 }
コード例 #5
0
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'packages';
     // Posible status for package
     $this->packages_status = array();
     $this->packages_status['active'] = 'Active';
     $this->packages_status['deactive'] = 'Deactive';
 }
コード例 #6
0
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'accounts';
     $this->general_ledger = 'accounts_general_ledger';
     $this->sales = 'accounts_sales';
     $this->profitloss = 'accounts_profitloss';
     $this->payable_receviable = 'accounts_payable_receviable';
     $this->purchases = 'accounts_purchases';
     $this->reconcilation = 'account_reconcilation';
 }
コード例 #7
0
ファイル: class.inventory.php プロジェクト: TheHanif/POS
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'inventory';
 }
コード例 #8
0
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'branches';
 }
コード例 #9
0
ファイル: class.user.php プロジェクト: TheHanif/POS-10
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'users';
 }
コード例 #10
0
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'open_balance';
 }
コード例 #11
0
 function __construct()
 {
     parent::__construct();
     $this->table_company = 'companies';
 }
コード例 #12
0
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'warehouse';
 }
コード例 #13
0
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'discount';
 }
コード例 #14
0
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'branch_user_roles';
     $this->table_branch = 'branches';
 }
コード例 #15
0
ファイル: class.sales.php プロジェクト: TheHanif/POS-Faizan
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'sale';
 }
コード例 #16
0
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'supplier';
     $this->bills = 'bills';
 }
コード例 #17
0
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'branch_menu_types';
     $this->table_branch = 'branches';
 }
コード例 #18
0
ファイル: search.php プロジェクト: bbutlerfrog/benfrogs-pad
 function __construct($searchParams)
 {
     parent::__construct('employees');
     $this->searchParams = $searchParams;
 }
コード例 #19
0
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'branch_category';
     $this->table_branch = 'branches';
 }
コード例 #20
0
ファイル: index.php プロジェクト: essamamdani/aslamClass
 function __construct($host, $username, $password, $dbname)
 {
     parent::__construct($host, $username, $password, $dbname);
 }
コード例 #21
0
ファイル: class.bank.php プロジェクト: TheHanif/POS-Faizan
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'banks';
     $this->transection = 'banks_transection';
 }
コード例 #22
0
 function __construct()
 {
     parent::__construct();
 }
コード例 #23
0
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'movies';
     $this->table_showtime = 'showtimes';
 }
コード例 #24
0
ファイル: class.product.php プロジェクト: TheHanif/POS-Faizan
 function __construct()
 {
     parent::__construct();
     $this->table_name = 'products';
 }
コード例 #25
0
ファイル: maps.php プロジェクト: bbutlerfrog/benfrogs-pad
 function __construct()
 {
     parent::__construct('sakila');
 }