コード例 #1
0
ファイル: logout.php プロジェクト: Swift-Jr/thmdhc
 function __construct()
 {
     parent::__construct();
     if (!$this->User->authenticated()) {
         redirect('/site-admin/');
     }
 }
コード例 #2
0
ファイル: home.php プロジェクト: Swift-Jr/thmdhc
 function __construct()
 {
     parent::__construct();
 }
コード例 #3
0
ファイル: Store.php プロジェクト: Swift-Jr/thmdhc
 function __construct()
 {
     parent::__construct();
     $this->load->helper('date');
 }
コード例 #4
0
ファイル: image_Controller.php プロジェクト: Swift-Jr/thmdhc
 function __construct($ImageManager)
 {
     parent::__construct();
     $this->im = new $ImageManager();
 }