LoginSignup
6
8

More than 5 years have passed since last update.

【CakePHP】リダイレクト先でメッセージを表示する(setFlashとflash)

Last updated at Posted at 2014-03-13

リダイレクト先メッセージを出す場合に使用する。

使い方

SessionComponentの設定を行う。

コントローラ
public $components = array('Session');

SessionComponentへメッセージの登録を行う。

コントローラ
$this->Session->setFlash('メッセージ');

SessionHelperを使いセッションより取得して表示する。

ビュー
<?php echo $this->Session->flash(); ?>

使用するレイアウトを変更する

コントローラ
$this->Session->setFlash('メッセージ','flash_success');
ビュー
<?php echo $this->Session->flash(); ?>

/views/elementsフォルダに、flash_success.ctpを用意する。

flash_success.ctp
<div>
    <?php echo $message; ?>
</div>

参考:CakePHP setFlashで出力されるメッセージのスタイルを変える方法

6
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
8