-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.xml
executable file
·36 lines (36 loc) · 1.63 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
<?xml version="1.0"?>
<zend-config xmlns:zf="http://framework.zend.com/xml/zend-config-xml/1.0/">
<plugin>
<pluginName>Tagfield</pluginName>
<pluginNiceName>Tags field</pluginNiceName>
<pluginDescription>Object field to add tags</pluginDescription>
<!-- Plugin Server Host-->
<pluginServer>thirdpartyplugins.pimcore.org</pluginServer>
<!-- Version and Revision are updated by createRevision Script !-->
<pluginVersion>1</pluginVersion>
<pluginRevision>0</pluginRevision>
<pluginBuildTimestamp>0</pluginBuildTimestamp>
<pluginIframeSrc></pluginIframeSrc>
<!-- className of the plugin which extends Pimcore_API_Plugin_Abstract-->
<pluginClassName>Tagfield_Plugin</pluginClassName>
<!-- include paths relative to plugin-directory -->
<pluginIncludePaths>
<path>/Tagfield/lib</path>
<path>/Tagfield/controllers</path>
<path>/Tagfield/models</path>
</pluginIncludePaths>
<!-- namespaces to register with autoloader-->
<pluginNamespaces>
<namespace>Tagfield</namespace>
</pluginNamespaces>
<!-- js files with path relative to plugin-directory -->
<pluginJsPaths>
<path>/Tagfield/static/js/Tagfield/data/Tagfield.js</path>
<path>/Tagfield/static/js/Tagfield/tags/Tagfield.js</path>
</pluginJsPaths>
<!-- css files with path relative to plugin-directory -->
<pluginCssPaths>
<path>/Tagfield/static/css/admin.css</path>
</pluginCssPaths>
</plugin>
</zend-config>