This repository has been archived by the owner on Aug 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pnversion.php
executable file
·53 lines (47 loc) · 2.09 KB
/
pnversion.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
46
47
48
49
50
51
52
53
<?php
/**
* locations
*
* @copyright (c) 2008,2010, Locations Development Team
* @link http://code.zikula.org/locations
* @author Steffen Voß
* @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
* @package locations
*/
$dom = ZLanguage::getModuleDomain('locations');
$modversion['name'] = 'locations';
$modversion['displayname'] = __('Locations', $dom);
$modversion['description'] = __('Database for all kinds of locations.', $dom);
$modversion['url'] = __('locations', $dom);
$modversion['version'] = '2.0.1';
// Information for the credits module
$modversion['credits'] = 'pndocs/credits.txt';
$modversion['help'] = 'pndocs/readme.txt';
$modversion['changelog'] = 'pndocs/changelog.txt';
$modversion['license'] = 'pndocs/license.txt';
$modversion['official'] = 0;
$modversion['author'] = 'Steffen Voß, Carsten Volmer';
$modversion['contact'] = 'http://kaffeeringe.de, http://carsten-volmer.de';
// I suspect these are not respected as the should
$modversion['admin'] = 1;
$modversion['user'] = 1;
// permission schema
$modversion['securityschema'] = array('locations::' => '::',
'locations:Location:' => 'LocationID::');
// recommended and required modules
$modversion['dependencies'] = array(array('modname' => 'crpTag',
'minversion' => '0.1.0',
'maxversion' => '',
'status' => PNMODULE_DEPENDENCY_RECOMMENDED
),
array('modname' => 'crpCalendar',
'minversion' => '0.4.9',
'maxversion' => '',
'status' => PNMODULE_DEPENDENCY_RECOMMENDED
),
array('modname' => 'mediashare',
'minversion' => '3.2',
'maxversion' => '',
'status' => PNMODULE_DEPENDENCY_RECOMMENDED
)
);