-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
executable file
·40 lines (31 loc) · 1.3 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
<?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>Minify</pluginName>
<!-- a short description -->
<pluginDescription><![CDATA[Provides helper functions for minifying JS/CSS in templates]]></pluginDescription>
<!-- meta data -->
<pluginVersion>1.0</pluginVersion>
<pluginRevision>1</pluginRevision>
<pluginBuildTimestamp>0</pluginBuildTimestamp>
<!-- put in the URL for the plugin configuration eg. /plugin/Minify/admin/index -->
<pluginIframeSrc></pluginIframeSrc>
<!-- className of the plugin which extends Pimcore_API_Plugin_Abstract-->
<pluginClassName>\Minify\Plugin</pluginClassName>
<!-- include paths relative to plugin-directory -->
<pluginIncludePaths>
<path>/Minify/lib</path>
</pluginIncludePaths>
<!-- namespaces to register with autoloader-->
<pluginNamespaces>
<namespace>Minify</namespace>
</pluginNamespaces>
<!-- js files with path relative to plugin-directory -->
<pluginJsPaths>
</pluginJsPaths>
<!-- css files with path relative to plugin-directory -->
<pluginCssPaths>
</pluginCssPaths>
</plugin>
</zend-config>