vendor/acl/custom-layout-handling-bundle/src/AclCustomLayoutHandlingBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Acl\CustomLayoutHandlingBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. use Symfony\Component\DependencyInjection\ContainerBuilder;
  5. use Acl\CustomLayoutHandlingBundle\DependencyInjection\Compiler\LayoutResolverPass;
  6. class AclCustomLayoutHandlingBundle extends AbstractPimcoreBundle
  7. {
  8.     public function build(ContainerBuilder $builder)
  9.     {
  10.         $builder->addCompilerPass(new LayoutResolverPass());
  11.     }
  12.     public function getJsPaths()
  13.     {
  14.         return [];
  15.     }
  16. }