-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
54 lines (42 loc) · 2.27 KB
/
plugin.xml
File metadata and controls
54 lines (42 loc) · 2.27 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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>TextfieldCounter</pluginName>
<!-- a short description -->
<pluginDescription><![CDATA[Displays a counter for the remaining allowed charactes in a textfield]]></pluginDescription>
<!-- meta data -->
<pluginVersion>1.0</pluginVersion>
<pluginRevision>1</pluginRevision>
<pluginBuildTimestamp>0</pluginBuildTimestamp>
<!-- put in the URL for the plugin configuration eg. /plugin/TextfieldCounter/admin/index -->
<pluginIframeSrc></pluginIframeSrc>
<!-- className of the plugin which extends Pimcore_API_Plugin_Abstract-->
<pluginClassName>TextfieldCounter_Plugin</pluginClassName>
<!-- include paths relative to plugin-directory -->
<pluginIncludePaths>
<path>/TextfieldCounter/lib</path>
</pluginIncludePaths>
<!-- namespaces to register with autoloader-->
<pluginNamespaces>
<namespace>TextfieldCounter</namespace>
</pluginNamespaces>
<!-- js files with path relative to plugin-directory -->
<pluginJsPaths>
<path>/plugins/TextfieldCounter/static/js/helpers/countdisplay.js</path>
<path>/plugins/TextfieldCounter/static/js/helpers/countconfig.js</path>
<path>/plugins/TextfieldCounter/static/js/Counter.js</path>
<path>/plugins/TextfieldCounter/static/js/TextfieldCounterPlugin.js</path>
<path>/plugins/TextfieldCounter/static/js/object/object.js</path>
<path>/plugins/TextfieldCounter/static/js/object/tags/input.js</path>
<path>/plugins/TextfieldCounter/static/js/object/tags/textarea.js</path>
<path>/plugins/TextfieldCounter/static/js/classes/class.js</path>
<path>/plugins/TextfieldCounter/static/js/classes/data/input.js</path>
<path>/plugins/TextfieldCounter/static/js/classes/data/textarea.js</path>
</pluginJsPaths>
<!-- css files with path relative to plugin-directory -->
<pluginCssPaths>
<path>/plugins/TextfieldCounter/static/css/styles.css</path>
</pluginCssPaths>
</plugin>
</zend-config>