Esempio n. 1
0
 /**
  * Constructor
  *
  * @access	public
  */
 function Members()
 {
     parent::Backend_Controller();
     $this->permission->secure_restrict();
     $this->layout->set_section('members');
     $this->load->model('member_model');
 }
Esempio n. 2
0
 /**
  * Constructor
  *
  * @access	public
  */
 function Content()
 {
     parent::Backend_Controller();
     $this->permission->secure_restrict();
     $this->layout->set_section('content');
 }
Esempio n. 3
0
 /**
  * Constructor
  *
  * @access	public
  */
 function Settings()
 {
     parent::Backend_Controller();
     $this->permission->secure_restrict();
     $this->layout->set_section('settings');
 }
Esempio n. 4
0
 /**
  * Constructor
  *
  * @access	public
  */
 function Session()
 {
     parent::Backend_Controller();
     $this->load->library('authentication');
 }