-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmetadata.php
executable file
·42 lines (41 loc) · 2.07 KB
/
metadata.php
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
<?php
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = array(
'id' => 'suaboclearcache',
'title' => 'suabo: Clear Cache',
'description' => array(
'de' => 'Stellt verschiedene Shop Cache Informationen bereit und bietet die möglichkeit diesen aus dem Backend zu leeren.',
'en' => 'Get cache informations and clear shop cache from within admin backend.'
),
'thumbnail' => './logo.png',
'version' => '3.0.2',
'author' => 'Marcel Grolms',
'url' => 'http://www.suabo.de',
'email' => '[email protected]',
'extend' => array(),
'controllers' => array(
'suaboclearcache' => Suabo\ClearCache\Controller\Admin\ClearCache::class
),
'blocks' => array(
array('template' => 'include/header_links.tpl', 'block' => 'admin_header_links', 'file' => 'views/blocks/suaboclearcachebutton.tpl')
),
'templates' => array(
'suaboclearcache_popup.tpl' => 'suabo/clearcache/views/admin/tpl/suaboclearcache_popup.tpl',
'suaboclearcache.tpl' => 'suabo/clearcache/views/admin/tpl/suaboclearcache.tpl'
),
'settings' => array(
array('group' => 'SUABOCLEARCACHE_main', 'name' => 'blSuaboClearCacheMode', 'type' => 'select', 'value' => '0', 'constraints' => '0|1', 'position' => 0),
array('group' => 'SUABOCLEARCACHE_main', 'name' => 'blSuaboClearCacheShop', 'type' => 'bool', 'value' => 'false'),
array('group' => 'SUABOCLEARCACHE_main', 'name' => 'blSuaboClearCachePersShop', 'type' => 'bool', 'value' => 'false'),
array('group' => 'SUABOCLEARCACHE_main', 'name' => 'blSuaboClearCacheTpl', 'type' => 'bool', 'value' => 'false'),
array('group' => 'SUABOCLEARCACHE_main', 'name' => 'blSuaboClearCacheLang', 'type' => 'bool', 'value' => 'false'),
array('group' => 'SUABOCLEARCACHE_main', 'name' => 'blSuaboClearCacheMenu', 'type' => 'bool', 'value' => 'false'),
array('group' => 'SUABOCLEARCACHE_debug', 'name' => 'blSuaboPHPErrorLogPath', 'type' => 'str', 'value' => '/path/to/your/php/error.log')
)
);