[[CakePHP3めも]]

     public function initialize()
     {
         parent::initialize();
 
         $this->loadComponent('Auth', [
             'loginAction' => [
                 'controller' => 'Users',
                 'action' => 'login'
             ],
             'loginRedirect' => [
                 'controller' => 'Pages',
                 'action' => 'index'
             ],
             'logoutRedirect' => [
                 'controller' => 'Users',
                 'action' => 'login'
             ]
         ]);
     }
 
     public function beforeFilter(Event $event)
     {
         parent::beforeFilter($event);
         
         $this->Auth->config('authenticate', [
             'Form' => [
                 'userModel' => 'Users',  // 認証に使用するテーブル
                 'finder' => 'auth'  // 認証条件の追加 UsersTable.php の findAuth() へ
             ]
         ]);
         
         $this->Auth->allow(['login']);
     }
 
     public function login()
     {
         if ($this->request->is('post')) {
             $user = $this->Auth->identify();
             if ($user) {
                 $this->Auth->setUser($user);
                 return $this->redirect($this->Auth->redirectUrl());
             }
             $this->Flash->error(__('Invalid username or password, try again'));
         }
     }
 
     public function logout()
     {
         return $this->redirect($this->Auth->logout());
     }


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS