-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.php
More file actions
43 lines (40 loc) · 1.12 KB
/
metadata.php
File metadata and controls
43 lines (40 loc) · 1.12 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
42
43
<?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_staticcache',
'title' => 'OXID Cookbook :: Static Cache',
'description' => 'Caches some pages as static files.',
'thumbnail' => 'cookbook.jpg',
'version' => '1.0',
'author' => 'Joscha Krug',
'url' => 'http://www.oxid-kochbuch.de',
'email' => 'krug@marmalade.de',
'extend' => array(
'oxshopcontrol' => 'ocb_staticcache/core/ocb_staticcache_oxshopcontrol',
'oxoutput' => 'ocb_staticcache/core/ocb_staticcache_oxoutput',
),
'files' => array(
'ocb_staticcache' => 'ocb_staticcache/core/ocb_staticcache.php'
),
'settings' => array(
array(
'group' => 'main',
'name' => 'iCacheLifetime',
'type' => 'str',
'value' => '10'
),
)
);