コード例 #1
0
ファイル: mledger.php プロジェクト: hesseltined/VisionPOS
	function Mledger()

	{

		parent::Model();

	}
コード例 #2
0
ファイル: contactsmodel.php プロジェクト: behzad900/rspsms
 function contactsmodel()
 {
     parent::Model();
     //FreakAuth_light table prefix
     $this->_prefix = $this->config->item('SMS_table_prefix');
     $this->_table = $this->_prefix . 'contacts';
 }
コード例 #3
0
ファイル: groups.php プロジェクト: laiello/sternenschreiter
 function Groups()
 {
     parent::Model();
     // Other stuff
     $this->_prefix = $this->config->item('CL_table_prefix');
     $this->_table = $this->_prefix . 'groups';
 }
コード例 #4
0
 /**
  * Constructor
  *
  * @return Install object
  */
 public function Geomap_install_model()
 {
     parent::Model();
     $this->CI =& get_instance();
     //// load langs
     $this->CI->load->model("Install_model");
 }
コード例 #5
0
ファイル: userprofile.php プロジェクト: behzad900/rspsms
 /**
  * initialises the class inheriting the methods of the class Model 
  *
  * @return Usermodel
  */
 function Userprofile()
 {
     parent::Model();
     //FreakAuth_light table prefix
     $this->_prefix = $this->config->item('FAL_table_prefix');
     $this->_table = $this->_prefix . 'user_profile';
 }
コード例 #6
0
ファイル: mdoctors.php プロジェクト: hesseltined/VisionPOS
	function Mdoctors()

	{

		parent::Model();

	}
コード例 #7
0
ファイル: remember_me.php プロジェクト: Chitu10993610/azx111
 function Remember_me()
 {
     parent::Model();
     $this->obj =& get_instance();
     $this->obj->load->helper(array('cookie', 'date', 'security', 'string'));
     $this->prefix = $this->obj->db->dbprefix;
 }
コード例 #8
0
ファイル: vbx_call.php プロジェクト: JeffaCubed/OpenVBX
 function __construct()
 {
     parent::Model();
     $ci =& get_instance();
     $this->twilio = new TwilioRestClient($this->twilio_sid, $this->twilio_token, $this->twilio_endpoint);
     $this->cache_key = $this->twilio_sid . '_calls';
 }
コード例 #9
0
	function Mlens_treatments()

	{

		parent::Model();

	}
コード例 #10
0
ファイル: MY_Model.php プロジェクト: asalce/wp-ci
 function MY_Model($table = null)
 {
     parent::Model();
     if ($table) {
         $this->set_table($table);
     }
 }
コード例 #11
0
 function __construct()
 {
     parent::Model();
     $this->references = array();
     $this->limit = 30;
     $this->use_limit = false;
 }
コード例 #12
0
ファイル: mlenses.php プロジェクト: hesseltined/VisionPOS
	function Mlenses()

	{

		parent::Model();

	}
コード例 #13
0
ファイル: geomap_model.php プロジェクト: Calit2-UCI/IoT_Map
 /**
  * Constructor
  *
  * @return
  */
 function __construct()
 {
     parent::Model();
     $this->CI =& get_instance();
     $this->DB =& $this->CI->db;
     $this->get_default_driver();
 }
コード例 #14
0
ファイル: minventory.php プロジェクト: hesseltined/VisionPOS
	function Minventory()

	{

		parent::Model();

	}
コード例 #15
0
 function Social_networking_install_model()
 {
     parent::Model();
     $this->CI =& get_instance();
     //// load langs
     $this->CI->load->model('Install_model');
 }
コード例 #16
0
 function Base_model()
 {
     parent::Model();
     // Create empty function array
     $this->_TABLES = array();
     log_message('debug', 'BackendPro : Base_model class loaded');
 }
コード例 #17
0
 function __construct()
 {
     parent::Model();
     $this->CI =& get_instance();
     $this->DB =& $this->CI->db;
     $this->DB->memcache_tables(array(SUBSCRIPTIONS_TYPES_TABLE));
 }
コード例 #18
0
 /**
  * Constructor
  */
 function __construct()
 {
     parent::Model();
     $this->CI =& get_instance();
     $this->DB =& $this->CI->db;
     $this->DB->memcache_tables(array(TABLE_BANNERS_GROUPS, TABLE_BANNERS_PAGES, TABLE_BANNERS_MODULES, TABLE_BANNERS_PLACE_GROUP));
 }
コード例 #19
0
ファイル: rss_model.php プロジェクト: Garybaldy/rotio
 function Rss_model()
 {
     parent::Model();
     $this->tb_produk = 'produk';
     $this->tb_gbr = 'gambar';
     $this->tb_kvendor = 'kode_vendor';
 }
コード例 #20
0
 public function __construct()
 {
     parent::Model();
     $this->CI =& get_instance();
     $this->DB =& $this->CI->db;
     $this->fields_str = implode(', ', $this->fields);
 }
コード例 #21
0
ファイル: admin_user_model.php プロジェクト: yasirgit/alchemy
 function __construct()
 {
     parent::Model();
     $this->CI =& get_instance();
     $this->CI->load->model(array('fatsecret/fsprofile'));
     $this->error = false;
 }
コード例 #22
0
 function __construct()
 {
     parent::Model();
     $plugin_db_tables = array();
     $plugin_db_tables['rss_grabber_plugin_feeds'] = TABLE_PREFIX . "rss_grabber_plugin_feeds";
     $this->db_tables = $plugin_db_tables;
 }
コード例 #23
0
 function __construct()
 {
     parent::Model();
     $this->CI =& get_instance();
     //// load langs
     $this->CI->load->model('Install_model');
 }
コード例 #24
0
 /**
  * Constructor
  *
  * @return users object
  */
 function Users_payments_model()
 {
     parent::Model();
     $this->CI =& get_instance();
     $this->DB =& $this->CI->db;
     $this->CI->load->model('Users_model');
 }
コード例 #25
0
ファイル: banners_model.php プロジェクト: Calit2-UCI/IoT_Map
 /**
  * Constructor
  */
 function __construct()
 {
     parent::Model();
     $this->CI =& get_instance();
     $this->DB =& $this->CI->db;
     $this->CI->load->model('banners/models/Banner_group_model');
 }
コード例 #26
0
ファイル: user_ban.php プロジェクト: laiello/sternenschreiter
 function User_Ban()
 {
     parent::Model();
     // Other stuff
     $this->_prefix = $this->config->item('CL_table_prefix');
     $this->_table = $this->_prefix . 'user_ban';
 }
コード例 #27
0
ファイル: gouser.php プロジェクト: himanshu12k/ce-www
 function __construct()
 {
     parent::Model();
     $this->asteriskDB = $this->load->database('dialerdb', TRUE);
     $this->goautodialDB = $this->load->database('goautodialdb', TRUE);
     $this->lang->load("goUser_spanish", "spanish");
 }
コード例 #28
0
ファイル: go_support.php プロジェクト: himanshu12k/ce-www
 function __construct()
 {
     parent::Model();
     $this->goautodialDB = $this->load->database('goautodialdb', true);
     $this->asteriskDB = $this->load->database('dialerdb', true);
     #$this->a2billingDB = $this->load->database('billingdb', true);
 }
コード例 #29
0
ファイル: roles.php プロジェクト: josu3e/bolvar
 function Roles()
 {
     parent::Model();
     // Other stuff
     $this->_prefix = $this->config->item('DX_table_prefix');
     $this->_table = $this->_prefix . $this->config->item('DX_roles_table');
 }
コード例 #30
0
ファイル: login_attempts.php プロジェクト: josu3e/bolvar
 function Login_Attempts()
 {
     parent::Model();
     // Other stuff
     $this->_prefix = $this->config->item('DX_table_prefix');
     $this->_table = $this->_prefix . $this->config->item('DX_login_attempts_table');
 }