Exemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('Register_model');
     $this->load->helper(array('form', 'url'));
     $this->load->library('form_validation');
 }
Exemplo n.º 2
0
 public function __construct()
 {
     parent::__construct();
     //Check if user is in admin group
     if ($this->ion_auth->is_admin()) {
         $data->the_user = $this->ion_auth->user()->row();
         $this->the_user = $data->the_user;
         $data->backend = TRUE;
         $this->load->vars($data);
     } else {
         //redirect them to the login page
         redirect('auth/login', 'refresh');
     }
 }
Exemplo n.º 3
0
 /**
  * Index Page for this controller.
  *
  * Maps to the following URL
  * 		http://example.com/index.php/welcome
  *	- or -  
  * 		http://example.com/index.php/welcome/index
  *	- or -
  * Since this controller is set as the default controller in 
  * config/routes.php, it's displayed at http://example.com/
  *
  * So any other public methods not prefixed with an underscore will
  * map to /index.php/welcome/<method_name>
  * @see http://codeigniter.com/user_guide/general/urls.html
  */
 public function __construct()
 {
     parent::__construct();
     $this->load->model('Register_model');
 }
Exemplo n.º 4
0
 function __construct()
 {
     parent::__construct();
 }