コード例 #1
0
ファイル: Clients.php プロジェクト: ArpanTanna/seo
 public function __construct()
 {
     parent::__construct();
     $this->_authenticate('login', array(2));
     $this->load->model('common_model');
     $this->dynamic_load->add_js('footer', array('src' => asset_url('js', 'agent/client.js'), 'type' => 'text/javascript'));
 }
コード例 #2
0
ファイル: Settings.php プロジェクト: ArpanTanna/seo
 public function __construct()
 {
     parent::__construct();
     $this->_authenticate('login', array(2));
     $this->load->model('common_model');
     $this->lang->load('web', 'english');
 }
コード例 #3
0
ファイル: Leadprocess.php プロジェクト: ArpanTanna/seo
 public function __construct()
 {
     parent::__construct();
     $this->load->model('common_model');
     $this->lang->load('web', 'english');
     $this->template->set_template('template_leads');
 }
コード例 #4
0
ファイル: Api.php プロジェクト: ArpanTanna/seo
 public function __construct()
 {
     parent::__construct();
     $this->template->set_template('guest_template');
     $this->load->model('common_model');
     $this->dynamic_load->add_js('footer', array('src' => asset_url('js', 'guest.js'), 'type' => 'text/javascript'));
 }
コード例 #5
0
ファイル: LeadTemplates.php プロジェクト: ArpanTanna/seo
 public function __construct()
 {
     parent::__construct();
     $this->_authenticate('login', array(2));
     $this->load->model('common_model');
     $this->dynamic_load->add_css(array('href' => asset_url('css', 'agent.css'), 'rel' => 'stylesheet', 'type' => 'text/css'));
     $this->dynamic_load->add_js('footer', array('src' => asset_url('js', 'agent/leadtemplates.js'), 'type' => 'text/javascript'));
 }
コード例 #6
0
ファイル: Web.php プロジェクト: ArpanTanna/seo
 public function __construct()
 {
     parent::__construct();
     if (in_array($this->router->fetch_method(), array('todo', 'webinfo', 'saveinfo'))) {
         $this->_authenticate('login', array(2));
     }
     $this->load->model('common_model');
 }
コード例 #7
0
ファイル: Remoteaccess.php プロジェクト: ArpanTanna/seo
 public function __construct()
 {
     parent::__construct();
     $this->load->model('common_model');
 }
コード例 #8
0
ファイル: Dashboard.php プロジェクト: ArpanTanna/seo
 public function __construct()
 {
     parent::__construct();
     $this->load->model('common_model');
     $this->lang->load('web', 'english');
 }