コード例 #1
0
ファイル: Admin.php プロジェクト: hjr3/ppi-skeleton-app
 function __construct()
 {
     parent::__construct();
     // Admins only viewing this screen
     $this->adminLoginCheck();
     if (!$this->isAdminLoggedIn()) {
         throw new PPI_Exception('Cheatin\' eh ?');
     }
 }
コード例 #2
0
 function __construct()
 {
     parent::__construct();
     // Admins only viewing this screen
     $this->adminLoginCheck();
     $this->addJavascript('admin-common.js');
     $this->addStylesheet('leftmenu.css');
     if (!$this->isAdminLoggedIn()) {
         throw new PPI_Exception('Cheatin\' eh ?');
     }
 }
コード例 #3
0
ファイル: Hooker.php プロジェクト: hjr3/ppi-skeleton-app
 function __construct()
 {
     parent::__construct();
 }