Revision #13 has been created by François Gannaz on Nov 7, 2011, 2:06:24 PM with the memo:
details
« previous (#6) next (#14) »
Changes
Title
unchanged
How to work with flash messages
Category
unchanged
Tutorials
Yii version
unchanged
Tags
changed
flash message, understanding
Content
changed
Summary
------
Set your messages in a controller:
```php
Yii::app()->user->setFlash('success', "Data1 saved!");
Yii::app()->user->setFlash('error', "Data2 failed!");
Yii::app()->user->setFlash('notice', "Data3 ignored.");
```
Display them in your view:
```php
<?php
foreach(Yii::app()->user->getFlashes() as $key => $message) {
echo '<div class="flash-' . $key . '">' . $message . "</div>\n";
}
?>
```
Setting flash messages
--------------------
A flash message is used in order to keep a message in session
and make surethrough one or several requests of the same user. By default, it
’ is removed from session after it has been displayed to the user.
Therefore fFlash messages are
available only in the current and the next requests. usually used in combination with HTTP redirections, because in this case there is no view, so messages can only be displayed in the request that follows redirection.
Flash messages can be set using the [setFlash()](http://www.yiiframework.com/doc/api/CWebUser#setFlash) Method of [CWebUser]. For example
, if you would like to inform the user
, that his changes were successfully saved, you could add the following line to your Controller:
```php
<?php
Yii::app()->user->setFlash('success',
"Data saved!");
$this->redirect(array('thing/view', 'id' => 1));
```
In this example we used the key 'success'. If you want to define more than one flash messages, you will have to use different keys.
You can put HTML tags in your message if you display it raw.
Displaying flash messages
-----------------------
To check for flash messages we use the [hasFlash()](http://www.yiiframework.com/doc/api/CWebUser#hasFlash) Method and to obtain the flash message we use the [getFlash()](http://www.yiiframework.com/doc/api/CWebUser#getFlash) Method.
Since Yii v1.1.3, there is also a method [getFlashes()](http://www.yiiframework.com/doc/api/CWebUser#getFlashes) to fetch all the messages.
By default, fetching a message deletes it from the session. This means that a message is meant to be displayed only on the first page served to the user. The fetching methods have a boolean parameter that can change this behavior. See the API links in the previous paragraph.
### Displaying statically
So showing of the flash message
defined above in a view is done by[...]
These few lines of code will make a flash message with the key "success" visible to the user within a div of class "info". The message will be displayed until this or another page is (re)loaded in the browser.
If you want to always display all the flash messages, then you should add a block to your layout (by default `protected/views/layout/main.php`):
```php
<?php
$flashMessages = Yii::app()->user->getFlashes();
if ($flashMessages) {
echo '<div class="flashes">';
foreach($flashMessages as $key => $message) {
echo '<div class="flash-' . $key . '">' . $message . "</div>\n";
}
echo '</div>';
}
?>
```
The default CSS created by the Yii script `yiic webapp` has directives for three classes of flash messages: `flash-error`, `flash-notice`, `flash-success`.
The best way to know if some flash messages are set is to check if `Yii::app()->user->getFlashes()` is empty. Since v1.1.7, Yii keeps an associative array of the flash keys in the form `array("key1" => 0, ...)`, or `null` if not flash message is set. You can fetch this with `Yii::app()->user->getState(CWebUser::FLASH_COUNTERS)` but this is not recommended, as Yii could change this internal process.
### Displaying dynamically (with Javascript)
If you want the flash message to appear somewhere above the content and then automatically fade out after a few seconds, you will have to add the following lines to your view:[...]
This is the fadeOut effect which will hide the .info DIV at slow speed.
#### Further readings
(JS):
- More information about the jQuery effects can be found [here](http://docs.jquery.com/Effects).
- [Using CJuiDialog to display flash Messages in Dialogues](http://www.yiiframework.com/wiki/79/using-cjuidialog-to-display-flash-messages-in-dialogues "Using CJuiDialog to display flash Messages in Dialogues")
##
# Links
- [
Russian Version](http://www.dbhelp.ru/yii-flash-msg/page/)
- [Chinese version](http://projects.ourplanet.tk/node/82)CWebUser API](http://www.yiiframework.com/doc/api/1.1/CWebUser)
- A more specific use of flash messages: [An easy way to display a success page using flash messages](http://www.yiiframework.com/wiki/172/an-easy-way-to-display-a-success-page-using-flash-messages/)