-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnversion.php
30 lines (26 loc) · 1.17 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
<?php
/**
* Zikula Application Framework
*
* @copyright (c) 2001, Zikula Development Team
* @link http://www.zikula.org
* @version $Id$
* @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
* @package Zikula_System_Modules
* @subpackage Admin_Messages
*/
$dom = ZLanguage::getModuleDomain('Admin_Messages');
$modversion['name'] = 'Admin_Messages';
$modversion['displayname'] = __('Admin messages manager', $dom);
$modversion['description'] = __("Provides a means of publishing, editing and scheduling special announcements from the site administrator.");
//! module name that appears in URL
$modversion['url'] = __('adminmessages', $dom);
$modversion['version'] = '2.2';
$modversion['changelog'] = 'pndocs/changelog.txt';
$modversion['credits'] = 'pndocs/credits.txt';
$modversion['help'] = 'pndocs/help.txt';
$modversion['license'] = 'pndocs/license.txt';
$modversion['official'] = 1;
$modversion['author'] = 'Mark West';
$modversion['contact'] = 'http://www.markwest.me.uk';
$modversion['securityschema'] = array('Admin_Messages::' => 'message title::message id');