XOOPS  2.6.0
xoops_version.php
Go to the documentation of this file.
1 <?php
2 /*
3  You may not change or alter any portion of this comment or credits
4  of supporting developers from this source code or any supporting source code
5  which is considered copyrighted (c) material of the original comment or credit authors.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10 */
11 
24 $modversion = array();
26 $modversion['description'] = _MI_LOGGER_DSC;
27 $modversion['version'] = 0.1;
28 $modversion['author'] = 'Richard Griffith';
29 $modversion['nickname'] = 'geekwright';
30 $modversion['credits'] = 'The XOOPS Project';
31 $modversion['license'] = 'GNU GPL 2.0';
32 $modversion['license_url'] = 'www.gnu.org/licenses/gpl-2.0.html/';
33 $modversion['official'] = 1;
34 $modversion['help'] = 'page=help';
35 $modversion['image'] = 'images/logo.png';
36 $modversion['dirname'] = 'logger';
37 
38 //about
39 $modversion['release_date'] = '2013/09/05';
40 $modversion['module_website_url'] = 'http://www.xoops.org/';
41 $modversion['module_website_name'] = 'XOOPS';
42 $modversion['module_status'] = 'ALPHA 1';
43 $modversion['min_php'] = '5.3.7';
44 $modversion['min_xoops'] = '2.6.0';
45 
46 // paypal
47 /*
48 $modversion['paypal'] = array();
49 $modversion['paypal']['business'] = '';
50 $modversion['paypal']['item_name'] = '';
51 $modversion['paypal']['amount'] = 0;
52 $modversion['paypal']['currency_code'] = '';
53 */
54 
55 // Admin menu
56 // Set to 1 if you want to display menu generated by system module
57 $modversion['system_menu'] = 1;
58 
59 /*
60  Manage extension
61  */
62 $modversion['extension'] = 1;
63 $modversion['extension_module'][] = 'system';
64 
65 // Admin things
66 $modversion['hasAdmin'] = 1;
67 $modversion['adminindex'] = 'admin/index.php';
68 $modversion['adminmenu'] = 'admin/menu.php';
69 
70 // Menu
71 $modversion['hasMain'] = 0;
72 
73 // Preferences
74 $modversion['config'][] = array(
75  'name' => 'logger_enable',
76  'title' => '_MI_LOGGER_ENABLE',
77  'description' => '',
78  'formtype' => 'yesno',
79  'valuetype' => 'int',
80  'default' => 0, // default to off to give chance to review module access rights
81 );
82 
83 $modversion['config'][] = array(
84  'name' => 'logger_popup',
85  'title' => '_MI_LOGGER_POPUP',
86  'description' => '',
87  'formtype' => 'yesno',
88  'valuetype' => 'int',
89  'default' => 0,
90 );
91 
92 $modversion['config'][] = array(
93  'name' => 'debug_smarty_enable',
94  'title' => '_MI_LOGGER_SMARTYDEBUG',
95  'description' => '',
96  'formtype' => 'yesno',
97  'valuetype' => 'int',
98  'default' => 0, // default to off to give chance to review module access rights
99 );
$modversion
const _MI_LOGGER_DSC
Definition: modinfo.php:20
const _MI_LOGGER_NAME
Definition: modinfo.php:19