vendor/coreshop/pimcore-bundle/DependencyInjection/Compiler/RegisterGridActionPass.php line 15

Open in your IDE?
  1. <?php
  2. /**
  3.  * CoreShop.
  4.  *
  5.  * This source file is subject to the GNU General Public License version 3 (GPLv3)
  6.  * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
  7.  * files that are distributed with this source code.
  8.  *
  9.  * @copyright  Copyright (c) 2015-2020 Dominik Pfaffenbauer (https://www.pfaffenbauer.at)
  10.  * @license    https://www.coreshop.org/license     GNU General Public License version 3 (GPLv3)
  11.  */
  12. namespace CoreShop\Bundle\PimcoreBundle\DependencyInjection\Compiler;
  13. class RegisterGridActionPass extends RegisterSimpleRegistryTypePass
  14. {
  15.     public const GRID_ACTION_TAG 'coreshop.grid.action';
  16.     public function __construct()
  17.     {
  18.         parent::__construct(
  19.             'coreshop.registry.grid.action',
  20.             'coreshop.grid.actions',
  21.             self::GRID_ACTION_TAG
  22.         );
  23.     }
  24. }