コード例 #1
0
ファイル: Delete.php プロジェクト: dextercowley/jissues
 /**
  * Initialize the controller.
  *
  * This will set up default model and view classes.
  *
  * @return  $this  Method allows chaining
  *
  * @since   1.0
  * @throws  \RuntimeException
  */
 public function initialize()
 {
     parent::initialize();
     $this->getContainer()->get('app')->getUser()->authorize('admin');
     $this->model->setUser($this->getContainer()->get('app')->getUser());
 }
コード例 #2
0
ファイル: Projects.php プロジェクト: dextercowley/jissues
 /**
  * Initialize the controller.
  *
  * This will set up default model and view classes.
  *
  * @return  $this  Method allows chaining
  *
  * @since   1.0
  * @throws  \RuntimeException
  */
 public function initialize()
 {
     parent::initialize();
     $this->model->setUser($this->getContainer()->get('app')->getUser());
     return $this;
 }