コード例 #1
0
ファイル: members.php プロジェクト: pkriete/simplypost
 /**
  * Constructor
  *
  * @access	public
  */
 function Members()
 {
     parent::Backend_Controller();
     $this->permission->secure_restrict();
     $this->layout->set_section('members');
     $this->load->model('member_model');
 }
コード例 #2
0
ファイル: content.php プロジェクト: pkriete/simplypost
 /**
  * Constructor
  *
  * @access	public
  */
 function Content()
 {
     parent::Backend_Controller();
     $this->permission->secure_restrict();
     $this->layout->set_section('content');
 }
コード例 #3
0
ファイル: settings.php プロジェクト: pkriete/simplypost
 /**
  * Constructor
  *
  * @access	public
  */
 function Settings()
 {
     parent::Backend_Controller();
     $this->permission->secure_restrict();
     $this->layout->set_section('settings');
 }
コード例 #4
0
ファイル: session.php プロジェクト: pkriete/simplypost
 /**
  * Constructor
  *
  * @access	public
  */
 function Session()
 {
     parent::Backend_Controller();
     $this->load->library('authentication');
 }