cakephp2-php8/lib/Cake/View/Helper/FlashHelper.php

100 lines
3.3 KiB
PHP
Raw Normal View History

2015-02-04 12:18:31 +00:00
<?php
/**
* Flash Helper
*
2015-02-04 12:18:31 +00:00
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package Cake.View.Helper
* @since CakePHP(tm) v 2.7.0-dev
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
App::uses('AppHelper', 'View/Helper');
App::uses('CakeSession', 'Model/Datasource');
/**
* FlashHelper class to render flash messages.
*
* After setting messages in your controllers with FlashComponent, you can use
* this class to output your flash messages in your views.
*
* @package Cake.View.Helper
*/
class FlashHelper extends AppHelper {
/**
* Used to render the message set in FlashComponent::set()
*
* In your view: $this->Flash->render('somekey');
* Will default to flash if no param is passed
*
* You can pass additional information into the flash message generation. This allows you
* to consolidate all the parameters for a given type of flash message into the view.
*
* ```
* echo $this->Flash->render('flash', array('params' => array('name' => $user['User']['name'])));
2015-02-04 12:18:31 +00:00
* ```
*
* This would pass the current user's name into the flash message, so you could create personalized
* messages without the controller needing access to that data.
*
* Lastly you can choose the element that is used for rendering the flash message. Using
* custom elements allows you to fully customize how flash messages are generated.
*
* ```
* echo $this->Flash->render('flash', array('element' => 'my_custom_element'));
2015-02-04 12:18:31 +00:00
* ```
*
* If you want to use an element from a plugin for rendering your flash message
* you can use the dot notation for the plugin's element name:
*
* ```
* echo $this->Flash->render('flash', array(
2015-02-04 12:18:31 +00:00
* 'element' => 'MyPlugin.my_custom_element',
* ));
2015-02-04 12:18:31 +00:00
* ```
*
* @param string $key The [Message.]key you are rendering in the view.
2015-02-04 12:18:31 +00:00
* @param array $options Additional options to use for the creation of this flash message.
* Supports the 'params', and 'element' keys that are used in the helper.
* @return string|null Rendered flash message or null if flash key does not exist
* in session.
* @throws UnexpectedValueException If value for flash settings key is not an array.
*/
public function render($key = 'flash', $options = array()) {
if (!CakeSession::check("Message.$key")) {
2015-02-04 12:18:31 +00:00
return;
}
$flash = CakeSession::read("Message.$key");
2015-02-04 12:18:31 +00:00
if (!is_array($flash)) {
throw new UnexpectedValueException(sprintf(
'Value for flash setting key "%s" must be an array.',
$key
));
}
$flash = $options + $flash;
CakeSession::delete("Message.$key");
// backwards compatibility with Session->setFlash()
2015-06-24 12:18:57 +00:00
if ($flash['element'] === 'default') {
2015-06-24 11:09:32 +00:00
$class = 'message';
if (!empty($flash['params']['class'])) {
$class = $flash['params']['class'];
}
return '<div id="' . $key . 'Message" class="' . $class . '">' . $flash['message'] . '</div>';
}
2015-02-04 12:18:31 +00:00
return $this->_View->element($flash['element'], $flash);
}
}