123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <?php
- namespace Symfony\Component\HttpFoundation\Session\Flash;
- class AutoExpireFlashBag implements FlashBagInterface
- {
- private $name = 'flashes';
-
- private $flashes = array();
-
- private $storageKey;
-
- public function __construct($storageKey = '_sf2_flashes')
- {
- $this->storageKey = $storageKey;
- $this->flashes = array('display' => array(), 'new' => array());
- }
-
- public function getName()
- {
- return $this->name;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
-
- public function initialize(array &$flashes)
- {
- $this->flashes = &$flashes;
-
-
-
- $this->flashes['display'] = array_key_exists('new', $this->flashes) ? $this->flashes['new'] : array();
- $this->flashes['new'] = array();
- }
-
- public function add($type, $message)
- {
- $this->flashes['new'][$type][] = $message;
- }
-
- public function peek($type, array $default = array())
- {
- return $this->has($type) ? $this->flashes['display'][$type] : $default;
- }
-
- public function peekAll()
- {
- return array_key_exists('display', $this->flashes) ? (array) $this->flashes['display'] : array();
- }
-
- public function get($type, array $default = array())
- {
- $return = $default;
- if (!$this->has($type)) {
- return $return;
- }
- if (isset($this->flashes['display'][$type])) {
- $return = $this->flashes['display'][$type];
- unset($this->flashes['display'][$type]);
- }
- return $return;
- }
-
- public function all()
- {
- $return = $this->flashes['display'];
- $this->flashes = array('new' => array(), 'display' => array());
- return $return;
- }
-
- public function setAll(array $messages)
- {
- $this->flashes['new'] = $messages;
- }
-
- public function set($type, $messages)
- {
- $this->flashes['new'][$type] = (array) $messages;
- }
-
- public function has($type)
- {
- return array_key_exists($type, $this->flashes['display']) && $this->flashes['display'][$type];
- }
-
- public function keys()
- {
- return array_keys($this->flashes['display']);
- }
-
- public function getStorageKey()
- {
- return $this->storageKey;
- }
-
- public function clear()
- {
- return $this->all();
- }
- }
|