| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://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. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Controller\Component;
- use Cake\Controller\Component;
- use Cake\Controller\ComponentRegistry;
- use Cake\Http\Exception\InternalErrorException;
- use Cake\Utility\Inflector;
- use Exception;
- /**
- * The CakePHP FlashComponent provides a way for you to write a flash variable
- * to the session from your controllers, to be rendered in a view with the
- * FlashHelper.
- *
- * @method void success(string $message, array $options = []) Set a message using "success" element
- * @method void error(string $message, array $options = []) Set a message using "error" element
- */
- class FlashComponent extends Component
- {
- /**
- * The Session object instance
- *
- * @var \Cake\Http\Session
- */
- protected $_session;
- /**
- * Default configuration
- *
- * @var array
- */
- protected $_defaultConfig = [
- 'key' => 'flash',
- 'element' => 'default',
- 'params' => [],
- 'clear' => false,
- 'duplicate' => true
- ];
- /**
- * Constructor
- *
- * @param \Cake\Controller\ComponentRegistry $registry A ComponentRegistry for this component
- * @param array $config Array of config.
- */
- public function __construct(ComponentRegistry $registry, array $config = [])
- {
- parent::__construct($registry, $config);
- $this->_session = $registry->getController()->getRequest()->getSession();
- }
- /**
- * Used to set a session variable that can be used to output messages in the view.
- * If you make consecutive calls to this method, the messages will stack (if they are
- * set with the same flash key)
- *
- * In your controller: $this->Flash->set('This has been saved');
- *
- * ### Options:
- *
- * - `key` The key to set under the session's Flash key
- * - `element` The element used to render the flash message. Default to 'default'.
- * - `params` An array of variables to make available when using an element
- * - `clear` A bool stating if the current stack should be cleared to start a new one
- * - `escape` Set to false to allow templates to print out HTML content
- *
- * @param string|\Exception $message Message to be flashed. If an instance
- * of \Exception the exception message will be used and code will be set
- * in params.
- * @param array $options An array of options
- * @return void
- */
- public function set($message, array $options = [])
- {
- $options += (array)$this->getConfig();
- if ($message instanceof Exception) {
- if (!isset($options['params']['code'])) {
- $options['params']['code'] = $message->getCode();
- }
- $message = $message->getMessage();
- }
- if (isset($options['escape']) && !isset($options['params']['escape'])) {
- $options['params']['escape'] = $options['escape'];
- }
- list($plugin, $element) = pluginSplit($options['element']);
- if ($plugin) {
- $options['element'] = $plugin . '.Flash/' . $element;
- } else {
- $options['element'] = 'Flash/' . $element;
- }
- $messages = [];
- if (!$options['clear']) {
- $messages = (array)$this->_session->read('Flash.' . $options['key']);
- }
- if (!$options['duplicate']) {
- foreach ($messages as $existingMessage) {
- if ($existingMessage['message'] === $message) {
- return;
- }
- }
- }
- $messages[] = [
- 'message' => $message,
- 'key' => $options['key'],
- 'element' => $options['element'],
- 'params' => $options['params']
- ];
- $this->_session->write('Flash.' . $options['key'], $messages);
- }
- /**
- * Magic method for verbose flash methods based on element names.
- *
- * For example: $this->Flash->success('My message') would use the
- * success.ctp element under `src/Template/Element/Flash` for rendering the
- * flash message.
- *
- * If you make consecutive calls to this method, the messages will stack (if they are
- * set with the same flash key)
- *
- * Note that the parameter `element` will be always overridden. In order to call a
- * specific element from a plugin, you should set the `plugin` option in $args.
- *
- * For example: `$this->Flash->warning('My message', ['plugin' => 'PluginName'])` would
- * use the warning.ctp element under `plugins/PluginName/src/Template/Element/Flash` for
- * rendering the flash message.
- *
- * @param string $name Element name to use.
- * @param array $args Parameters to pass when calling `FlashComponent::set()`.
- * @return void
- * @throws \Cake\Http\Exception\InternalErrorException If missing the flash message.
- */
- public function __call($name, $args)
- {
- $element = Inflector::underscore($name);
- if (count($args) < 1) {
- throw new InternalErrorException('Flash message missing.');
- }
- $options = ['element' => $element];
- if (!empty($args[1])) {
- if (!empty($args[1]['plugin'])) {
- $options = ['element' => $args[1]['plugin'] . '.' . $element];
- unset($args[1]['plugin']);
- }
- $options += (array)$args[1];
- }
- $this->set($args[0], $options);
- }
- }
|