Beispiel #1
0
 /**
  * constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->load->library(array('utility', 'templater'));
     // load library classes
     $this->load->helper(array('utility'));
     // load helper functions
 }
Beispiel #2
0
 /**
  * constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->load->config('config');
     $this->load->library(array('utility', 'templater', 'PasswordHash'));
     // load library classes
     $this->load->helper(array('utility'));
     // load helper functions
     $this->load->model(array('profile_model', 'login_model'));
     // load model classes
 }
Beispiel #3
0
 public function __construct()
 {
     parent::__construct();
     $this->load->config('config');
     // load config
     $this->load->library(array('utility', 'templater'));
     // load library classes
     $this->load->helper(array('utility'));
     // load helper functions
     $this->load->model(array('cms_model'));
     // load model classes
 }