vendor/pimcore/pimcore/bundles/AdminBundle/Session/AdminSessionBagConfigurator.php line 48

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\Bundle\AdminBundle\Session;
  16. use Pimcore\Session\Attribute\LockableAttributeBag;
  17. use Pimcore\Session\SessionConfiguratorInterface;
  18. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  19. /**
  20.  * @internal
  21.  *
  22.  */
  23. class AdminSessionBagConfigurator implements SessionConfiguratorInterface
  24. {
  25.     /**
  26.      * Attribute bag configuration
  27.      *
  28.      * @var array
  29.      */
  30.     private $config = [];
  31.     /**
  32.      * @param array $config
  33.      */
  34.     public function __construct(array $config)
  35.     {
  36.         $this->config $config;
  37.     }
  38.     /**
  39.      * {@inheritdoc}
  40.      */
  41.     public function configure(SessionInterface $session)
  42.     {
  43.         foreach ($this->config as $name => $config) {
  44.             $bag = new LockableAttributeBag($config['storage_key']);
  45.             $bag->setName($name);
  46.             $session->registerBag($bag);
  47.         }
  48.     }
  49. }