core/lib/Thelia/Core/Template/Element/FlashMessage.php line 92

  1. <?php
  2. /*
  3.  * This file is part of the Thelia package.
  4.  * http://www.thelia.net
  5.  *
  6.  * (c) OpenStudio <info@thelia.net>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Thelia\Core\Template\Element;
  12. /**
  13.  * Class FlashMessage.
  14.  *
  15.  * @author Julien Chanséaume <jchanseaume@openstudio.fr>
  16.  */
  17. class FlashMessage implements \Iterator
  18. {
  19.     private $position;
  20.     protected $collection = [];
  21.     public function __construct()
  22.     {
  23.         $this->position 0;
  24.         $this->collection = [];
  25.     }
  26.     public function add($type$messages): void
  27.     {
  28.         foreach ($messages as $message) {
  29.             $this->collection[] = [
  30.                 'type' => $type,
  31.                 'message' => $message,
  32.             ];
  33.         }
  34.     }
  35.     public function addAll($all): void
  36.     {
  37.         foreach ($all as $type => $messages) {
  38.             $this->add($type$messages);
  39.         }
  40.     }
  41.     public function isEmpty()
  42.     {
  43.         return \count($this->collection) == 0;
  44.     }
  45.     public function getCount()
  46.     {
  47.         return \count($this->collection);
  48.     }
  49.     /**
  50.      * (PHP 5 &gt;= 5.0.0)<br/>
  51.      * Return the current element.
  52.      *
  53.      * @see http://php.net/manual/en/iterator.current.php
  54.      *
  55.      * @return mixed can return any type
  56.      */
  57.     public function current()
  58.     {
  59.         return $this->collection[$this->position];
  60.     }
  61.     /**
  62.      * (PHP 5 &gt;= 5.0.0)<br/>
  63.      * Move forward to next element.
  64.      *
  65.      * @see http://php.net/manual/en/iterator.next.php
  66.      *
  67.      * @return void any returned value is ignored
  68.      */
  69.     public function next(): void
  70.     {
  71.         ++$this->position;
  72.     }
  73.     /**
  74.      * (PHP 5 &gt;= 5.0.0)<br/>
  75.      * Return the key of the current element.
  76.      *
  77.      * @see http://php.net/manual/en/iterator.key.php
  78.      *
  79.      * @return mixed scalar on success, or null on failure
  80.      */
  81.     public function key()
  82.     {
  83.         return $this->position;
  84.     }
  85.     /**
  86.      * (PHP 5 &gt;= 5.0.0)<br/>
  87.      * Checks if current position is valid.
  88.      *
  89.      * @see http://php.net/manual/en/iterator.valid.php
  90.      *
  91.      * @return bool The return value will be casted to boolean and then evaluated.
  92.      *              Returns true on success or false on failure.
  93.      */
  94.     public function valid(): bool
  95.     {
  96.         return isset($this->collection[$this->position]);
  97.     }
  98.     /**
  99.      * (PHP 5 &gt;= 5.0.0)<br/>
  100.      * Rewind the Iterator to the first element.
  101.      *
  102.      * @see http://php.net/manual/en/iterator.rewind.php
  103.      *
  104.      * @return void any returned value is ignored
  105.      */
  106.     public function rewind(): void
  107.     {
  108.         $this->position 0;
  109.     }
  110. }