/** * 事前処理. */ public function beforeFilter() { parent::beforeFilter(); $this->autoRender = false; $this->Security->csrfCheck = false; $this->Security->validatePost = false; }
/** * Call frist * @access public */ public function beforeFilter() { parent::beforeFilter(); if (isset($this->Security) && $this->request->isPost() && $this->action == 'importcity') { $this->Security->validatePost = false; $this->Security->enabled = false; $this->Security->csrfCheck = false; } }
public function beforeFilter() { parent::beforeFilter(); $this->layout = 'agent/login'; // loginアクションをログインしなくても利用できるように設定 $this->Auth->allow('login'); // ブラックホールコールバック指定 $this->Security->blackHoleCallback = 'blackhole'; }
/** * 前処理 * @access public */ public function beforeFilter() { parent::beforeFilter(); // listsメソッドを、listとして扱う if ($this->action == "list") { $this->action = "lists"; } $this->Security->csrfCheck = false; $this->Security->validatePost = false; }
/** * 前処理 * @access public */ public function beforeFilter() { parent::beforeFilter(); // listsメソッドを、listとして扱う if ($this->action == "list") { $this->action = "lists"; } // POST チェックは行わない $this->Security->validatePost = false; // $this->Security->csrfCheck = false; // ブラックホールコールバック指定 $this->Security->blackHoleCallback = 'blackhole'; }
/** * Call frist * @access public */ public function beforeFilter() { parent::beforeFilter(); }
/** * 前処理 * @access public */ public function beforeFilter() { parent::beforeFilter(); $this->Security->validatePost = false; }
/** * 前処理 * @access public */ public function beforeFilter() { parent::beforeFilter(); // ブラックホールコールバック指定 $this->Security->blackHoleCallback = 'blackhole'; }
/** * 前処理 * @access public */ public function beforeFilter() { parent::beforeFilter(); $this->loadModel('UserRelation'); $this->loadModel('Device'); }