Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.63 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Main Class
  4.  * @author David Pham
  5.  * @version 1.4
  6.  */
  7. class Main
  8. {
  9.     public static $Config;
  10.  
  11.     public static $DB;
  12.     public static $Html;
  13.     public static $Session;
  14.     public static $Cookie;
  15.     public static $System;
  16.  
  17.     // Database tables
  18.     public static $dbTables = array('ERP'               => 'cfg_erp',
  19.                              'Website'              => 'cfg_website',
  20.                              'Func'                 => 'sys_func',
  21.                              'Cart'                 => 'sys_cart',
  22.                              'Country'              => 'sys_country',
  23.                              'State'                => 'sys_state',
  24.                              'TaxSchedule'          => 'sys_taxschedule',
  25.                              'TaxCodeDetail'        => 'fr_sy_salestaxcodedetail',
  26.                              'ShipMethod'           => 'sys_shipmethod',
  27.                              'ShipPrice'            => 'sys_shipprice',
  28.                              'CreditCardType'       => 'sys_creditcardtype',
  29.                              'Category'             => 'sys_category',
  30.                              'Group'                => 'sys_group',
  31.                              'InventoryMaster'      => 'im_inventorymaster',
  32.                              'InventoryImage'       => 'im_inventoryimg',
  33.                              'InventoryWarehouse'   => 'fr_im_inventoryitemwhsedetl',
  34.                              'InventoryProductLine' => 'fr_im_productline',
  35.                              'InventoryWhseCode'    => 'fr_im_warehousecode',
  36.                              'RelationalAttribute'  => 'rel_attribute',
  37.                              'RelationalInventory'  => 'rel_inventory',
  38.                              'RelationalCategory'   => 'rel_category',
  39.                              'RelationalGroup'      => 'rel_group',
  40.                              'CustomerMaster'       => 'ar_customer',
  41.                              'SalespersonMaster'    => 'fr_ar_salesperson',
  42.                              'CustomerShipAddress'  => 'fr_so_shiptoaddress',
  43.                              'TOSalesOrderDetail'   => 'to_so_salesorderdetail',
  44.                              'TOSalesOrderHeader'   => 'to_so_salesorderheader');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement