-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest_shortcodes.xml
More file actions
25 lines (19 loc) · 1.18 KB
/
test_shortcodes.xml
File metadata and controls
25 lines (19 loc) · 1.18 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
<?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>
<!-- Two shortcode handlers defined for tests -->
<service id="test_esi" parent="Webfactory\ShortcodeBundle\Handler\EmbeddedShortcodeHandler.esi">
<argument index="1">Webfactory\ShortcodeBundle\Tests\Fixtures\Controller\ShortcodeTestController::test</argument>
<tag name="webfactory.shortcode" shortcode="test-service-esi" />
</service>
<service id="test_inline" parent="Webfactory\ShortcodeBundle\Handler\EmbeddedShortcodeHandler.inline">
<argument index="1">Webfactory\ShortcodeBundle\Tests\Fixtures\Controller\ShortcodeTestController::test</argument>
<tag name="webfactory.shortcode" shortcode="test-service-inline" />
</service>
<service id="Thunder\Shortcode\Handler\PlaceholderHandler">
<tag name="webfactory.shortcode" shortcode="placeholder" />
</service>
</services>
</container>