core/lib/Thelia/Core/Template/Loop/Argument/ArgumentCollection.php line 122

  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\Loop\Argument;
  12. /**
  13.  * @author Etienne Roudeix <eroudeix@openstudio.fr>
  14.  */
  15. class ArgumentCollection implements \Iterator
  16. {
  17.     private $arguments = [];
  18.     public function __construct()
  19.     {
  20.         $this->addArguments(\func_get_args(), true);
  21.     }
  22.     /**
  23.      * @return bool
  24.      */
  25.     public function hasKey($key)
  26.     {
  27.         return isset($this->arguments[$key]);
  28.     }
  29.     /**
  30.      * @return Argument|null
  31.      */
  32.     public function get($key)
  33.     {
  34.         return $this->hasKey($key) ? $this->arguments[$key] : null;
  35.     }
  36.     /**
  37.      * @return bool
  38.      */
  39.     public function isEmpty()
  40.     {
  41.         return \count($this->arguments) == 0;
  42.     }
  43.     /**
  44.      * @return ArgumentCollection
  45.      */
  46.     public function addArguments(array $argumentList$force true)
  47.     {
  48.         foreach ($argumentList as $argument) {
  49.             $this->addArgument($argument$force);
  50.         }
  51.         return $this;
  52.     }
  53.     /**
  54.      * @return ArgumentCollection
  55.      */
  56.     public function addArgument(Argument $argument$force true)
  57.     {
  58.         if (isset($this->arguments[$argument->name]) && !$force) {
  59.             return $this;
  60.         }
  61.         $this->arguments[$argument->name] = $argument;
  62.         return $this;
  63.     }
  64.     /**
  65.      * @param array $argumentNames array with names of arguments to remove
  66.      *
  67.      * @return ArgumentCollection
  68.      *
  69.      * @since 2.2.0-beta1
  70.      */
  71.     public function removeArguments(array $argumentNames)
  72.     {
  73.         foreach ($argumentNames as $argumentName) {
  74.             $this->removeArgument($argumentName);
  75.         }
  76.         return $this;
  77.     }
  78.     /**
  79.      * @param string $argumentName name of the argument to remove
  80.      *
  81.      * @return ArgumentCollection
  82.      *
  83.      * @since 2.2.0-beta1
  84.      */
  85.     public function removeArgument(string $argumentName)
  86.     {
  87.         if (isset($this->arguments[$argumentName])) {
  88.             unset($this->arguments[$argumentName]);
  89.         }
  90.         return $this;
  91.     }
  92.     public function getCount()
  93.     {
  94.         return \count($this->arguments);
  95.     }
  96.     /**
  97.      * (PHP 5 &gt;= 5.0.0)<br/>
  98.      * Return the current element.
  99.      *
  100.      * @see http://php.net/manual/en/iterator.current.php
  101.      *
  102.      * @return Argument
  103.      */
  104.     public function current()
  105.     {
  106.         return current($this->arguments);
  107.     }
  108.     /**
  109.      * (PHP 5 &gt;= 5.0.0)<br/>
  110.      * Move forward to next element.
  111.      *
  112.      * @see http://php.net/manual/en/iterator.next.php
  113.      *
  114.      * @return void any returned value is ignored
  115.      */
  116.     public function next(): void
  117.     {
  118.         next($this->arguments);
  119.     }
  120.     /**
  121.      * (PHP 5 &gt;= 5.0.0)<br/>
  122.      * Return the key of the current element.
  123.      *
  124.      * @see http://php.net/manual/en/iterator.key.php
  125.      *
  126.      * @return mixed scalar on success, or null on failure
  127.      */
  128.     public function key()
  129.     {
  130.         return key($this->arguments);
  131.     }
  132.     /**
  133.      * (PHP 5 &gt;= 5.0.0)<br/>
  134.      * Checks if current position is valid.
  135.      *
  136.      * @see http://php.net/manual/en/iterator.valid.php
  137.      *
  138.      * @return bool The return value will be casted to boolean and then evaluated.
  139.      *              Returns true on success or false on failure.
  140.      */
  141.     public function valid(): bool
  142.     {
  143.         return $this->key() !== null;
  144.     }
  145.     /**
  146.      * (PHP 5 &gt;= 5.0.0)<br/>
  147.      * Rewind the Iterator to the first element.
  148.      *
  149.      * @see http://php.net/manual/en/iterator.rewind.php
  150.      *
  151.      * @return void any returned value is ignored
  152.      */
  153.     public function rewind(): void
  154.     {
  155.         reset($this->arguments);
  156.     }
  157.     public function getHash()
  158.     {
  159.         $arguments $this->arguments;
  160.         if (\array_key_exists('name'$arguments)) {
  161.             unset($arguments['name']);
  162.         }
  163.         $string '';
  164.         foreach ($arguments as $key => $argument) {
  165.             $string .= $key.'='.$argument->getRawValue();
  166.         }
  167.         return md5($string);
  168.     }
  169. }