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

  • MapbenderDrupalIntegrationExtension
  • Overview
  • Namespace
  • Class
  • Tree
  • Deprecated
  • Todo
  • Download
 1: <?php
 2: 
 3: namespace Mapbender\DrupalIntegrationBundle\DependencyInjection;
 4: 
 5: use Symfony\Component\Config\FileLocator;
 6: use Symfony\Component\DependencyInjection\ContainerBuilder;
 7: use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
 8: use Symfony\Component\HttpKernel\DependencyInjection\Extension;
 9: 
10: class MapbenderDrupalIntegrationExtension extends Extension {
11: 
12:     public function load(array $configs, ContainerBuilder $container) {
13:         $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
14:         $loader->load('services.xml');
15:     }
16: 
17:     public function getAlias() {
18:         return 'mapbender_drupal_integration';
19:     }
20: }
21: 
Mapbender3 API documenation API documentation generated by ApiGen 2.8.0