Overview

Namespaces

  • Mapbender
    • Component
      • HTTP
    • CoreBundle
      • Command
      • Component
        • Exception
      • Controller
      • DataFixtures
        • ORM
      • DependencyInjection
      • Element
        • Type
      • Entity
      • EventListener
      • Extension
      • Form
        • DataTransformer
        • EventListener
        • Type
      • Security
      • Template
    • DrupalIntegrationBundle
      • DependencyInjection
      • Security
        • Authentication
          • Provider
          • Token
        • Authorization
          • Voter
        • Factory
        • Firewall
        • User
      • Session
    • KmlBundle
      • Element
    • ManagerBundle
      • Controller
      • Form
        • DataTransformer
        • Type
    • MonitoringBundle
      • Command
      • Component
      • Controller
      • DependencyInjection
      • Entity
      • EventListener
      • Form
    • PrintBundle
      • Component
      • Controller
    • WmcBundle
      • Component
        • Exception
      • Element
        • Type
      • Entity
      • Form
        • EventListener
        • Type
    • WmsBundle
      • Component
        • Exception
      • Controller
      • DependencyInjection
      • Element
        • Type
      • Entity
      • Event
      • Form
        • EventListener
        • Type
    • WmtsBundle
      • Component
        • Exception
      • Controller
      • Entity
      • Form
        • Type
  • None
  • PHP

Classes

  • MapbenderDrupalIntegrationBundle
  • Overview
  • Namespace
  • Class
  • Tree
  • Deprecated
  • Todo
  • Download
 1: <?php
 2: 
 3: /*
 4:  * This file is part of the Mapbender 3 project.
 5:  *
 6:  * For the full copyright and license information, please view the LICENSE
 7:  * file that was distributed with this source code.
 8:  */
 9: 
10: namespace Mapbender\DrupalIntegrationBundle;
11: 
12: use Mapbender\CoreBundle\Component\MapbenderBundle;
13: use Mapbender\DrupalIntegrationBundle\Security\Factory\DrupalFactory;
14: use Symfony\Component\DependencyInjection\ContainerBuilder;
15: 
16: /**
17:  * DrupalIntegrationBundle.
18:  *
19:  * @author Christian Wygoda
20:  */
21: class MapbenderDrupalIntegrationBundle extends MapbenderBundle
22: {
23:     public function build(ContainerBuilder $container)
24:     {
25:         parent::build($container);
26: 
27:         $extension = $container->getExtension('security');
28:         $extension->addSecurityListenerFactory(new DrupalFactory());
29:     }
30: }
31: 
Mapbender3 API documenation API documentation generated by ApiGen 2.8.0