vendor/pimcore/pimcore/models/Element/Data/MarkerHotspotItem.php line 133

Open in your IDE?
  1. <?php
  2. /**
  3.  * Pimcore
  4.  *
  5.  * This source file is available under two different licenses:
  6.  * - GNU General Public License version 3 (GPLv3)
  7.  * - Pimcore Commercial License (PCL)
  8.  * Full copyright and license information is available in
  9.  * LICENSE.md which is distributed with this source code.
  10.  *
  11.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  12.  *  @license    http://www.pimcore.org/license     GPLv3 and PCL
  13.  */
  14. namespace Pimcore\Model\Element\Data;
  15. use Pimcore\Model;
  16. /**
  17.  * @internal
  18.  */
  19. class MarkerHotspotItem implements \ArrayAccess
  20. {
  21.     /**
  22.      * @var string
  23.      */
  24.     public $name '';
  25.     /**
  26.      * @var string
  27.      */
  28.     public $type '';
  29.     /**
  30.      * @var mixed
  31.      */
  32.     public $value;
  33.     /**
  34.      * @param array $data
  35.      */
  36.     public function __construct($data)
  37.     {
  38.         foreach ($data as $key => $value) {
  39.             $setter 'set' $key;
  40.             if (method_exists($this$setter)) {
  41.                 $this->$setter($value);
  42.             }
  43.         }
  44.     }
  45.     /**
  46.      * @return string
  47.      */
  48.     public function getName()
  49.     {
  50.         return $this->name;
  51.     }
  52.     /**
  53.      * @param string $name
  54.      */
  55.     public function setName($name)
  56.     {
  57.         $this->name $name;
  58.     }
  59.     /**
  60.      * @return string
  61.      */
  62.     public function getType()
  63.     {
  64.         return $this->type;
  65.     }
  66.     /**
  67.      * @param string $type
  68.      */
  69.     public function setType($type)
  70.     {
  71.         $this->type $type;
  72.     }
  73.     /**
  74.      * @return mixed
  75.      */
  76.     public function getValue()
  77.     {
  78.         return $this->value;
  79.     }
  80.     /**
  81.      * @param mixed $value
  82.      */
  83.     public function setValue($value)
  84.     {
  85.         $this->value $value;
  86.     }
  87.     /**
  88.      * (PHP 5 &gt;= 5.0.0)<br/>
  89.      * Whether a offset exists
  90.      *
  91.      * @link http://php.net/manual/en/arrayaccess.offsetexists.php
  92.      *
  93.      * @param mixed $offset <p>
  94.      * An offset to check for.
  95.      * </p>
  96.      *
  97.      * @return bool true on success or false on failure.
  98.      * </p>
  99.      * <p>
  100.      * The return value will be casted to boolean if non-boolean was returned.
  101.      */
  102.     public function offsetExists($offset)
  103.     {
  104.         return property_exists($this$offset);
  105.     }
  106.     /**
  107.      * (PHP 5 &gt;= 5.0.0)<br/>
  108.      * Offset to retrieve
  109.      *
  110.      * @link http://php.net/manual/en/arrayaccess.offsetget.php
  111.      *
  112.      * @param mixed $offset <p>
  113.      * The offset to retrieve.
  114.      * </p>
  115.      *
  116.      * @return mixed Can return all value types.
  117.      */
  118.     public function offsetGet($offset)
  119.     {
  120.         if ($this->offsetExists($offset)) {
  121.             if ($offset == 'value' && in_array($this->type, ['object''asset''document'])) {
  122.                 return Model\Element\Service::getElementById($this->type$this->value);
  123.             } else {
  124.                 return $this->$offset;
  125.             }
  126.         }
  127.         return null;
  128.     }
  129.     /**
  130.      * (PHP 5 &gt;= 5.0.0)<br/>
  131.      * Offset to set
  132.      *
  133.      * @link http://php.net/manual/en/arrayaccess.offsetset.php
  134.      *
  135.      * @param mixed $offset <p>
  136.      * The offset to assign the value to.
  137.      * </p>
  138.      * @param mixed $value <p>
  139.      * The value to set.
  140.      * </p>
  141.      */
  142.     public function offsetSet($offset$value)
  143.     {
  144.         if ($this->offsetExists($offset)) {
  145.             if ($value instanceof Model\Element\ElementInterface) {
  146.                 $value $value->getId();
  147.             }
  148.             $this->$offset $value;
  149.         }
  150.     }
  151.     /**
  152.      * (PHP 5 &gt;= 5.0.0)<br/>
  153.      * Offset to unset
  154.      *
  155.      * @link http://php.net/manual/en/arrayaccess.offsetunset.php
  156.      *
  157.      * @param mixed $offset <p>
  158.      * The offset to unset.
  159.      * </p>
  160.      */
  161.     public function offsetUnset($offset)
  162.     {
  163.         if ($this->offsetExists($offset)) {
  164.             $this->$offset null;
  165.         }
  166.     }
  167. }