-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmetadata.php
39 lines (36 loc) · 1.12 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
<?php
/**
* This file is part of a OXID Cookbook project
*
* Version: 1.0
* Author: Joscha Krug <krug@marmalade.de>
* Author URI: http://www.marmalade.de
*/
/**
* Metadata version
*/
$sMetadataVersion = '1.1';
/**
* Module information
*/
$aModule = array(
'id' => 'ocb_cleartmp',
'title' => 'OXID Cookbook :: Clear tmp',
'description' => 'Clear the tmp directory from the backend.',
'thumbnail' => 'cookbook.jpg',
'version' => '1.0',
'author' => 'Joscha Krug',
'url' => 'http://www.oxid-kochbuch.de',
'email' => 'krug@marmalade.de',
'extend' => array(
'navigation' => 'ocb_cleartmp/controllers/admin/ocb_cleartmp_navigation',
'oxshopcontrol' => 'ocb_cleartmp/core/ocb_cleartmp_oxshopcontrol',
),
'templates' => array(
'ocb_header.tpl' => 'ocb_cleartmp/views/admin/ocb_header.tpl'
),
'settings' => array(
array('group' => 'main', 'name' => 'sPictureClear', 'type' => 'bool', 'value' => 'false'),
array('group' => 'main', 'name' => 'aRemoteHosts', 'type' => 'arr'),
)
);