forked from byng-systems/pimcore-elastic-search-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
41 lines (33 loc) · 1.54 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
<?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>PimcoreElasticsearchPlugin</pluginName>
<!-- a short description -->
<pluginDescription><![CDATA[]]></pluginDescription>
<!-- meta data -->
<pluginVersion>2.0.0</pluginVersion>
<pluginRevision>1</pluginRevision>
<pluginBuildTimestamp>0</pluginBuildTimestamp>
<!-- put in the URL for the plugin configuration eg. /plugin/PimcoreElasticsearchPlugin/admin/index -->
<pluginIframeSrc />
<!-- className of the plugin which extends Pimcore_API_Plugin_Abstract-->
<pluginClassName>Byng\Pimcore\Elasticsearch\ElasticsearchPlugin</pluginClassName>
<!-- include paths relative to plugin-directory -->
<pluginIncludePaths>
<path>/PimcoreElasticsearchPlugin/lib</path>
</pluginIncludePaths>
<!-- namespaces to register with autoloader-->
<pluginNamespaces>
<namespace>Byng\Pimcore\Elasticsearch</namespace>
</pluginNamespaces>
<!-- js files with path relative to plugin-directory -->
<pluginJsPaths>
<path>/plugins/PimcoreElasticsearchPlugin/static/js/startup.js</path>
</pluginJsPaths>
<!-- css files with path relative to plugin-directory -->
<pluginCssPaths>
<path>/plugins/PimcoreElasticsearchPlugin/static/css/elasticsearch.css</path>
</pluginCssPaths>
</plugin>
</zend-config>