-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
42 lines (33 loc) · 1.73 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0"?>
<zend-config xmlns:zf="http://framework.zend.com/xml/zend-config-xml/1.0/">
<plugin>
<!-- the plugin name [A-Za-z_] -->
<pluginName>LanguageSwitcher</pluginName>
<!-- a short description -->
<pluginDescription><![CDATA[LanguageSwitcher is a Pimcore plugin that makes managing multi-lingual websites a whole lot easier and straightforward. Its main function is to find related nodes in parallel branches and to easily create menus for jumping to the same subpage in other languages - in the frontend and in the backend.]]></pluginDescription>
<!-- meta data -->
<pluginVersion>1.0</pluginVersion>
<pluginRevision>1</pluginRevision>
<pluginBuildTimestamp>0</pluginBuildTimestamp>
<!-- put in the URL for the plugin configuration eg. /plugin/LanguageSwitcher/admin/index -->
<pluginIframeSrc></pluginIframeSrc>
<!-- className of the plugin which extends Pimcore_API_Plugin_Abstract-->
<pluginClassName>\LanguageSwitcher\Plugin</pluginClassName>
<!-- include paths relative to plugin-directory -->
<pluginIncludePaths>
<path>/LanguageSwitcher/lib</path>
</pluginIncludePaths>
<!-- namespaces to register with autoloader-->
<pluginNamespaces>
<namespace>LanguageSwitcher</namespace>
</pluginNamespaces>
<!-- js files with path relative to plugin-directory -->
<pluginJsPaths>
<path>/plugins/LanguageSwitcher/static/js/startup.js</path>
</pluginJsPaths>
<!-- css files with path relative to plugin-directory -->
<pluginCssPaths>
<path>/plugins/LanguageSwitcher/static/css/style.css</path>
</pluginCssPaths>
</plugin>
</zend-config>