forked from OXIDCookbook/ocb_cleartmp
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmetadata.php
executable file
·45 lines (43 loc) · 1.66 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
43
44
45
<?php
/**
* @package ocb_cleartmp
* @category OXID Module
* @version 2.0.5
* @license GNU License http://opensource.org/licenses/GNU
* @author Joscha Krug <[email protected]> / OXID Community
* @link https://github.com/OXIDprojects/ocb_cleartmp
* @see https://github.com/OXIDCookbook/ocb_cleartmp
*/
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = [
'id' => 'ocb_cleartmp',
'title' => 'OXID Community Cleartmp (by OXID Cookbook)',
'description' => 'Clear the tmp directory from the backend.',
'thumbnail' => 'cookbook.jpg',
'version' => '2.0.5',
'author' => 'OXID Community',
'url' => 'https://github.com/OXIDprojects/ocb_cleartmp',
'email' => '',
'extend' => [
\OxidEsales\Eshop\Core\ShopControl::class => \OxidCommunity\OcbClearTmp\Core\ShopControl::class,
\OxidEsales\Eshop\Application\Controller\Admin\NavigationController::class => \OxidCommunity\OcbClearTmp\Controller\Admin\NavigationController::class,
],
'settings' => [
['group' => 'ocbcleartmp_main', 'name' => 'ocbcleartmpDevMode', 'type' => 'bool', 'value' => false],
['group' => 'ocbcleartmp_main', 'name' => 'ocbcleartmpPictureClear', 'type' => 'bool', 'value' => false],
['group' => 'ocbcleartmp_main', 'name' => 'ocbcleartmpRemoteHosts', 'type' => 'arr']
],
'blocks' => [
[
'template' => 'include/header_links.tpl',
'block' => 'admin_header_links',
'file' => '/views/blocks/header__admin_header_links.tpl',
],
],
];