前提・実現したいこと
cakephpでログアウト機能を実装したいです。
昨日の実装はできましたが、ボタンを押してログアウト処理を実行し、ログイン画面に戻る方法をアドバイスください。
該当のソースコード
basecontroller
1<?php 2namespace App\Controller; 3 4use App\Controller\AppController; 5use Cake\Auth\DefaultPasswordHasher; 6 7class BaseController extends AppController 8{ 9 10 public function initialize(): void 11 { 12 parent::initialize(); 13 $this->loadComponent('RequestHandler'); 14 $this->loadComponent('Flash'); 15 $this->loadComponent('Auth',[ 16 'authorize' => ['Controller'], 17 'authenticate' => [ 18 'Form' => [ 19 'fields' => [ 20 'username' => 'username', 21 'password' => 'password' 22 ] 23 ] 24 ], 25 'loginRedirect' => [ 26 'controller' =>'User', 27 'action' =>'login' 28 ], 29 'logoutRedirect' => [ 30 'controller' =>'User', 31 'action' =>'logout', 32 ], 33 'authError' => 'ログインしてください', 34 ]); 35 } 36 37 public function login() { 38 if($this->request->isPost()) { 39 $user = $this->Auth->identify(); 40 if(!empty($user)){ 41 $this->Auth->setUser($user); 42 return $this->redirect($this->Auth->redirectUrl()); 43 } 44 $this->Flash->error('間違っています。'); 45 } 46 } 47 48 public function logout() { 49 $this->request->session()->destroy(); 50 return $this->redirect($this->Auth->logout()); 51 } 52}
samplecontoroller
1<?php 2namespace App\Controller; 3 4use App\Controller\AppController; 5use Exception; 6 7class SampleController extends BaseController 8{public function initialize(): void 9 { 10 parent::initialize(); 11 12 $this->set('authuser', $this->Auth->user()); 13 }
index
1<h2>この下にボタン作りたい</h2>
試したこと
index.phpにボタンを実装します。
cakephp
1 <?= $this->Html->link(__('logout'), 2 'http://localhost/???/user/logout',) ?>
これでやったのですがうまくできませんでした。
user/logout
のリンクに繋げればログアウト処理を実行できるので、リンクの繋がったボタンを作ればOKと思いました。そこから先が思いつきません。
補足情報(FW/ツールのバージョンなど)
cakephp4.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/15 23:27
2020/05/15 23:31
2020/06/07 14:40