-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.xml
More file actions
49 lines (41 loc) · 2.93 KB
/
services.xml
File metadata and controls
49 lines (41 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<services>
<defaults autoconfigure="true" autowire="true" public="false" />
<service id="Webfactory\Bundle\NavigationBundle\Build\BuildDispatcher" shared="false"/>
<service id="webfactory_navigation.tree_factory.dispatcher" alias="Webfactory\Bundle\NavigationBundle\Build\BuildDispatcher" public="true" />
<service id="Webfactory\Bundle\NavigationBundle\Build\TreeFactory" lazy="true">
<argument type="service" id="config_cache_factory" />
<argument>%kernel.cache_dir%/webfactory_navigation/tree.php</argument>
<argument type="service" id="Psr\Container\ContainerInterface"/>
<argument type="service" id="event_dispatcher"/>
<argument type="service" id="logger" on-invalid="null"/>
<argument type="service" id="debug.stopwatch" on-invalid="null"/>
<tag name="monolog.logger" channel="webfactory_navigation"/>
<tag name="container.service_subscriber" />
</service>
<service id="webfactory_navigation.tree_factory" alias="Webfactory\Bundle\NavigationBundle\Build\TreeFactory" public="true" />
<service id="Webfactory\Bundle\NavigationBundle\Tree\Tree" lazy="true">
<factory service="Webfactory\Bundle\NavigationBundle\Build\TreeFactory" method="getTree" />
</service>
<service id="webfactory_navigation.tree" alias="Webfactory\Bundle\NavigationBundle\Tree\Tree" public="true" />
<service id="Webfactory\Bundle\NavigationBundle\Event\ActiveNodeEventListener">
<tag name="kernel.event_listener" event="webfactory_navigation.tree_initialized" method="initializeTree"/>
</service>
<service id="webfactory_navigation.event.active_node_event_listener" alias="Webfactory\Bundle\NavigationBundle\Event\ActiveNodeEventListener" />
<service id="Webfactory\Bundle\NavigationBundle\Twig\NavigationExtension">
<tag name="twig.extension"/>
</service>
<service id="webfactory_navigation.twig_extension" alias="Webfactory\Bundle\NavigationBundle\Twig\NavigationExtension" />
<service id="Webfactory\Bundle\NavigationBundle\Command\DumpTreeCommand">
<tag name="console.command"/>
</service>
<service id="webfactory_navigation.command.dump_tree_command" alias="Webfactory\Bundle\NavigationBundle\Command\DumpTreeCommand" />
<service id="Webfactory\Bundle\NavigationBundle\Command\LookupNodeCommand">
<tag name="console.command"/>
</service>
<service id="webfactory_navigation.command.lookup_node_command" alias="Webfactory\Bundle\NavigationBundle\Command\LookupNodeCommand" />
</services>
</container>