public function __construct()
 {
     parent::__construct();
     $this->load->library(array('session', 'form_validation'));
     $this->load->model('login_model');
     $this->load->helper(array('url', 'form'));
 }
예제 #2
0
파일: contact.php 프로젝트: resnostyle/xem
 function __construct()
 {
     parent::__construct();
     $this->load->library('recaptcha');
     $this->load->library('form_validation');
     $this->load->helper('form');
     $this->lang->load('recaptcha');
 }
예제 #3
0
 public function __construct()
 {
     parent::__construct();
     $this->load->library(array('session', 'form_validation'));
     //$this->load->helper(array('url'));
     //MNODEL DE LOGIN
     $this->load->model('login_model');
     // $this->load->library(array('session','form_validation'));
     $this->load->helper(array('url', 'form'));
     $this->load->database('default');
 }
예제 #4
0
파일: xem.php 프로젝트: resnostyle/xem
 function __construct()
 {
     parent::__construct();
 }