Example #1
0
 /**
  * Before execute action
  *
  * @return void
  */
 public function before()
 {
     // Check privileges
     if (!$this->auth->loggedIn()) {
         // 401 Unauthorized
         return parent::responseCode(401);
     } elseif (!$this->auth->loggedIn('admin')) {
         // 403 Forbidden
         return parent::responseCode(403);
     }
     parent::before();
     $this->assets->add('css/frontend.css', $this->config->assets->frontend)->add('js/frontend.js', $this->config->assets->frontend);
 }