-
Notifications
You must be signed in to change notification settings - Fork 4
/
plugin.xml
27 lines (22 loc) · 952 Bytes
/
plugin.xml
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
<?xml version="1.0"?>
<zend-config>
<plugin>
<!-- the plugin name [A-Za-z_] -->
<pluginName>PimcoreSitemapPlugin</pluginName>
<!-- a short description -->
<pluginDescription><![CDATA[XML sitemap generator for Pimcore. Built from the document tree.]]></pluginDescription>
<!-- meta data -->
<pluginVersion>0.1.0</pluginVersion>
<pluginRevision>1</pluginRevision>
<!-- className of the plugin which extends Pimcore_API_Plugin_Abstract-->
<pluginClassName>Byng\Pimcore\Sitemap\SitemapPlugin</pluginClassName>
<!-- include paths relative to plugin-directory -->
<pluginIncludePaths>
<path>/PimcoreSitemapPlugin/lib</path>
</pluginIncludePaths>
<!-- namespaces to register with autoloader-->
<pluginNamespaces>
<namespace>Byng\Pimcore\Sitemap</namespace>
</pluginNamespaces>
</plugin>
</zend-config>