core/lib/Thelia/Core/Hook/FragmentBag.php line 43

  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\Hook;
  12. use Iterator;
  13. /**
  14.  * Class FragmentBag.
  15.  *
  16.  * @author  Julien Chanséaume <jchanseaume@openstudio.fr>
  17.  */
  18. class FragmentBag implements \Iterator
  19. {
  20.     private $position;
  21.     /** @var array */
  22.     protected $fragments;
  23.     public function __construct()
  24.     {
  25.         $this->position 0;
  26.         $this->fragments = [];
  27.     }
  28.     /**
  29.      * (PHP 5 &gt;= 5.0.0)<br/>
  30.      * Return the current element.
  31.      *
  32.      * @see http://php.net/manual/en/iterator.current.php
  33.      *
  34.      * @return mixed can return any type
  35.      */
  36.     public function current()
  37.     {
  38.         return $this->fragments[$this->position];
  39.     }
  40.     /**
  41.      * (PHP 5 &gt;= 5.0.0)<br/>
  42.      * Move forward to next element.
  43.      *
  44.      * @see http://php.net/manual/en/iterator.next.php
  45.      *
  46.      * @return void any returned value is ignored
  47.      */
  48.     public function next(): void
  49.     {
  50.         ++$this->position;
  51.     }
  52.     /**
  53.      * (PHP 5 &gt;= 5.0.0)<br/>
  54.      * Return the key of the current element.
  55.      *
  56.      * @see http://php.net/manual/en/iterator.key.php
  57.      *
  58.      * @return mixed scalar on success, or null on failure
  59.      */
  60.     public function key()
  61.     {
  62.         return $this->position;
  63.     }
  64.     /**
  65.      * (PHP 5 &gt;= 5.0.0)<br/>
  66.      * Checks if current position is valid.
  67.      *
  68.      * @see http://php.net/manual/en/iterator.valid.php
  69.      *
  70.      * @return bool The return value will be casted to boolean and then evaluated.
  71.      *              Returns true on success or false on failure.
  72.      */
  73.     public function valid(): bool
  74.     {
  75.         return isset($this->fragments[$this->position]);
  76.     }
  77.     /**
  78.      * (PHP 5 &gt;= 5.0.0)<br/>
  79.      * Rewind the Iterator to the first element.
  80.      *
  81.      * @see http://php.net/manual/en/iterator.rewind.php
  82.      *
  83.      * @return void any returned value is ignored
  84.      */
  85.     public function rewind(): void
  86.     {
  87.         $this->position 0;
  88.     }
  89.     /**
  90.      * Clears all parameters.
  91.      *
  92.      * @api
  93.      */
  94.     public function clear(): void
  95.     {
  96.         $this->position 0;
  97.         $this->fragments = [];
  98.     }
  99.     public function isEmpty()
  100.     {
  101.         return \count($this->fragments) == 0;
  102.     }
  103.     public function getCount()
  104.     {
  105.         return \count($this->fragments);
  106.     }
  107.     public function add($data): void
  108.     {
  109.         $fragment = new Fragment($data);
  110.         $this->addFragment($fragment);
  111.     }
  112.     public function addFragment(Fragment $fragment): void
  113.     {
  114.         $this->fragments[] = $fragment;
  115.     }
  116.     /**
  117.      * Gets the all keys fragment.
  118.      *
  119.      * @return array An array of parameters
  120.      *
  121.      * @api
  122.      */
  123.     public function keys()
  124.     {
  125.         return array_keys($this->fragments);
  126.     }
  127. }