コード例 #1
0
ファイル: seo.ctrl.php プロジェクト: monkeytie/korona
 public function pre()
 {
     $this->user = Authenticate::me();
     if (!is_a($this->user, 'Kadmin') || $this->user->getType() != 'admin') {
         throw new Exception('Not Authorized', 401);
     }
 }