This repository was archived by the owner on Apr 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·41 lines (41 loc) · 1.95 KB
/
plugin.xml
File metadata and controls
executable file
·41 lines (41 loc) · 1.95 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
<?xml version="1.0"?>
<zend-config xmlns:zf="http://framework.zend.com/xml/zend-config-xml/1.0/">
<plugin>
<pluginName>Commenting</pluginName>
<pluginDescription><![CDATA[Allows commenting on assets, documents, and objects.]]></pluginDescription>
<!-- Plugin Server Host-->
<!-- nice name to display in pimcore -->
<pluginNiceName>Commenting</pluginNiceName>
<!-- 64x64px plugin icon-->
<pluginIcon>/plugins/Commenting/static/img/commenting-logo.png</pluginIcon>
<pluginServer>plugins.pimcore.org</pluginServer>
<!-- Version and Revision are updated by createRevision Script !-->
<pluginVersion>1.0.1</pluginVersion>
<pluginRevision>36</pluginRevision>
<pluginBuildTimestamp>1289146147</pluginBuildTimestamp>
<pluginIframeSrc></pluginIframeSrc>
<!-- className of the plugin which extends Pimcore_API_Plugin_Abstract-->
<pluginClassName>Commenting_Plugin</pluginClassName>
<!-- include paths relative to plugin-directory -->
<pluginIncludePaths>
<path>/Commenting/lib</path>
<path>/Commenting/controllers</path>
<path>/Commenting/models</path>
</pluginIncludePaths>
<!-- namespaces to register with autoloader-->
<pluginNamespaces>
<namespace>Commenting</namespace>
<namespace>Resource</namespace>
</pluginNamespaces>
<!-- js files with path relative to plugin-directory -->
<pluginJsPaths>
<path>/Commenting/static/js/commentingplugin.js</path>
<path>/Commenting/static/js/comments.js</path>
<path>/Commenting/static/js/rowexpander.js</path>
</pluginJsPaths>
<!-- css files with path relative to plugin-directory -->
<pluginCssPaths>
<path>/Commenting/static/css/admin.css</path>
</pluginCssPaths>
</plugin>
</zend-config>