Exemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('a_member_model');
     $this->load->model('noticesys');
     $this->user_id = isset($this->session->userdata['member_user_id']) ? $this->session->userdata['member_user_id'] : 0;
 }
Exemplo n.º 2
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('mdl_memo');
     $this->load->library('form_validation');
     $this->load->library(array('upload', 'session'));
 }
Exemplo n.º 3
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('user');
     $this->load->model('bill');
     $this->user_id = isset($this->session->userdata['member_user_id']) ? $this->session->userdata['member_user_id'] : 0;
 }
Exemplo n.º 4
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('mdl_feedback');
     $this->load->model('mdl_course');
     $this->load->model('mdl_trainer');
 }
Exemplo n.º 5
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('mdl_course');
     $this->load->model('mdl_jadwal');
     $this->load->model('mdl_trainer');
 }
Exemplo n.º 6
0
 function __construct()
 {
     parent::__construct();
     $this->load->library('form_validation');
     $this->load->model('mdl_schedule');
     $this->load->model('mdl_course');
     $this->load->model('mdl_trainer');
 }
Exemplo n.º 7
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('a_member_model');
     $this->load->model('a_caifu_model');
     $this->tb_price = 'goods_price_library';
     $this->user_id = isset($this->session->userdata['member_user_id']) ? $this->session->userdata['member_user_id'] : 0;
 }
Exemplo n.º 8
0
 function __construct()
 {
     parent::__construct();
     $this->_auth();
     $this->load->model(array('m_photos', 'm_posts', 'm_videos', 'm_accounts', 'm_tags', 'm_photos', 'm_profiles', 'm_comments', 'm_likes'));
     $this->load->helper(array('pretty_date', 'pretty_url', 'ckeditor'));
     $this->load->vars(array('ql_active' => 'video', 'page_css' => array('contents')));
 }
Exemplo n.º 9
0
 function __construct()
 {
     parent::__construct();
     $this->_auth();
     $this->title = $this->title . ' - Member Messages';
     $this->load->model(array('m_accounts', 'm_profiles', 'm_messages', 'm_friends'));
     $this->load->helper(array('pretty_date', 'pretty_url'));
     $this->load->vars(array('ql_active' => $this->active, 'page_css' => array('contents')));
 }
Exemplo n.º 10
0
 function __construct()
 {
     parent::__construct();
     $this->_auth();
     $this->title = $this->title . ' - Invite Your Friends';
     $this->load->library(array('encrypt', 'upload'));
     $this->load->model(array('m_accounts', 'm_profiles', 'm_blogs', 'm_projects', 'm_reviews', 'm_posts'));
     $this->load->helper(array('pretty_date', 'pretty_url'));
     $this->load->vars(array('active' => $this->active, 'page_css' => array('contents')));
 }
Exemplo n.º 11
0
 function __construct()
 {
     parent::__construct();
     $this->_auth();
     $this->title = $this->title . ' - Member Dashboard';
     $this->load->library(array('encrypt', 'upload'));
     $this->load->model(array('m_accounts', 'm_profiles', 'm_blogs', 'm_projects', 'm_reviews', 'm_videos', 'm_posts', 'm_comments', 'm_likes', 'm_messages', 'm_threads'));
     $this->load->helper(array('pretty_date', 'pretty_url'));
     $this->load->vars(array('ql_active' => $this->active));
 }
Exemplo n.º 12
0
 function __construct()
 {
     parent::__construct();
     $this->_auth();
     $this->title = $this->title . ' - Member Forum Posts';
     $this->load->library(array('upload'));
     $this->load->model(array('m_posts', 'm_forums', 'm_threads', 'm_accounts', 'm_tags', 'm_photos', 'm_profiles'));
     $this->load->helper(array('pretty_date', 'pretty_url', 'create_thumb', 'ckeditor'));
     $this->load->vars(array('ql_active' => 'forum', 'page_css' => array('contents')));
 }
Exemplo n.º 13
0
 function __construct()
 {
     parent::__construct();
     $this->_auth();
     $this->title = $this->title . ' - Member Reviews';
     $this->load->library(array('upload'));
     $this->load->model(array('m_posts', 'm_reviews', 'm_accounts', 'm_tags', 'm_photos', 'm_brands', 'm_categories', 'm_profiles', 'm_comments', 'm_likes'));
     $this->load->helper(array('pretty_url', 'pretty_date', 'create_thumb', 'ckeditor'));
     $this->load->vars(array('ql_active' => 'review', 'page_css' => array('contents')));
 }
Exemplo n.º 14
0
 function __construct()
 {
     parent::__construct();
     $this->_auth();
     $this->title = $this->title . ' - Profile';
     $this->load->library(array('upload', 'image_lib', 'encrypt'));
     $this->load->model(array('m_profiles', 'm_accounts'));
     $this->load->helper(array('pretty_date', 'pretty_url'));
     $this->load->vars(array('ql_active' => 'profile', 'page_css' => array('contents')));
 }
Exemplo n.º 15
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('mdl_activity');
     $this->load->model('mdl_trainer');
     $this->load->model('mdl_peserta');
     $this->load->model('mdl_course');
     $this->load->model('mdl_schedule');
     $this->load->library('form_validation');
     $this->load->library(array('upload', 'session'));
 }
Exemplo n.º 16
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('mdl_pelatihan');
     $this->load->library('form_validation');
     $this->load->library(array('upload', 'session'));
     $this->load->library('Datatables');
     $this->load->helper('url');
     $this->load->helper('form');
     $this->load->helper('file');
 }
Exemplo n.º 17
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('mdl_peserta');
     $this->load->model('mdl_fgt_pelatihan');
     $this->load->model('mdl_pelatihan');
     $this->load->model('mdl_pekerja');
     $this->load->library('form_validation');
     $this->load->library(array('upload', 'session'));
     $this->load->helper('url');
     $this->load->helper('form');
     $this->load->helper('file');
 }
Exemplo n.º 18
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('mdl_fgt_induction');
     $this->load->model('mdl_pelatihan');
     $this->load->model('mdl_trainer');
     $this->load->model('mdl_provider');
     $this->load->model('mdl_observer');
     $this->load->model('mdl_sarfas');
     $this->load->model('mdl_libur');
     $this->load->model('mdl_peserta_induction');
     $this->load->library('form_validation');
     $this->load->library(array('upload', 'session'));
 }
Exemplo n.º 19
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('a_member_model');
     $this->load->model('goods_cate');
     $this->load->model('goods');
     $this->tb_price = 'goods_price_library';
     $this->tb_user = '******';
     $this->tb_goods = 'goods';
     $this->tb_order_goods = 'order_goods';
     $this->tb_order_log = 'order_log';
     $this->tb_discount = 'user_group_discount';
     $this->user_id = isset($this->session->userdata['member_user_id']) ? $this->session->userdata['member_user_id'] : 0;
 }
 function __construct()
 {
     parent::__construct();
     $this->load->model('meeting_model');
 }
Exemplo n.º 21
0
 function __construct()
 {
     define("IN_ADMIN", TRUE);
     parent::__construct();
 }
 function __construct()
 {
     parent::__construct();
 }
Exemplo n.º 23
0
 function Upload()
 {
     parent::__construct();
     $this->load->helper(array('form', 'url'));
 }
Exemplo n.º 24
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('mdl_laptop');
     $this->load->library('form_validation');
 }
Exemplo n.º 25
0
 function __construct()
 {
     parent::__construct();
     $this->load->model(mdl_course);
 }