vendor/pimcore/pimcore/lib/Document/Editable/Block/BlockName.php line 94

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4.  * Pimcore
  5.  *
  6.  * This source file is available under two different licenses:
  7.  * - GNU General Public License version 3 (GPLv3)
  8.  * - Pimcore Commercial License (PCL)
  9.  * Full copyright and license information is available in
  10.  * LICENSE.md which is distributed with this source code.
  11.  *
  12.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  13.  *  @license    http://www.pimcore.org/license     GPLv3 and PCL
  14.  */
  15. namespace Pimcore\Document\Editable\Block;
  16. use Pimcore\Model\Document\Editable;
  17. /**
  18.  * @internal
  19.  *
  20.  * Simple value object containing both name and real name of
  21.  * a block.
  22.  */
  23. final class BlockName implements \JsonSerializable
  24. {
  25.     /**
  26.      * @var string
  27.      */
  28.     private $name;
  29.     /**
  30.      * @var string
  31.      */
  32.     private $realName;
  33.     /**
  34.      * @param string $name
  35.      * @param string $realName
  36.      */
  37.     public function __construct(string $namestring $realName)
  38.     {
  39.         $this->name $name;
  40.         $this->realName $realName;
  41.     }
  42.     /**
  43.      * Factory method to create an instance from strings
  44.      *
  45.      * @param string $name
  46.      * @param string $realName
  47.      *
  48.      * @return BlockName
  49.      */
  50.     public static function createFromNames(string $namestring $realName): BlockName
  51.     {
  52.         return new self($name$realName);
  53.     }
  54.     /**
  55.      * Create an instance from a document editable
  56.      *
  57.      * @param Editable $editable
  58.      *
  59.      * @return BlockName
  60.      */
  61.     public static function createFromEditable(Editable $editable): BlockName
  62.     {
  63.         return new self($editable->getName(), $editable->getRealName());
  64.     }
  65.     /**
  66.      * @return string
  67.      */
  68.     public function getName(): string
  69.     {
  70.         return $this->name;
  71.     }
  72.     /**
  73.      * @return string
  74.      */
  75.     public function getRealName(): string
  76.     {
  77.         return $this->realName;
  78.     }
  79.     /**
  80.      * {@inheritdoc}
  81.      */
  82.     public function jsonSerialize()
  83.     {
  84.         return [
  85.             'name' => $this->name,
  86.             'realName' => $this->realName,
  87.         ];
  88.     }
  89. }