-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpnversion.php
More file actions
executable file
·27 lines (25 loc) · 937 Bytes
/
pnversion.php
File metadata and controls
executable file
·27 lines (25 loc) · 937 Bytes
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
<?php
/**
* FormExpress : Build forms for Zikula through a web interface
*
* @copyright (c) 2002 Stutchbury Limited, 2011 Chris Candreva
* @Version $Id$
* @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
* @package FormExpress
*
*/
$dom = ZLanguage::getModuleDomain('FormExpress');
$modversion['name'] = 'FormExpress';
$modversion['displayname'] = 'FormExpress';
$modversion['description'] = __('Build forms for your site using a web interface',$dom);
$modversion['version'] = '0.4.1';
$modversion['credits'] = 'docs/credits.txt';
$modversion['help'] = 'docs/help.txt';
$modversion['changelog'] = 'docs/changelog.txt';
$modversion['license'] = 'docs/license.txt';
$modversion['official'] = 0;
$modversion['author'] = 'Philip Fletcher, Chris Candreva';
$modversion['contact'] = 'http://code.zikula.org/formexpress/';
$modversion['admin'] = 1;
$modversion['securityschema'] = array('FormExpress::' => 'Block title::');
?>