Completed
Branch master (6a3c88)
by Michael
01:47
created

xoops_version.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * Name: xoops_version.php
4
 * Description:
5
 *
6
 * You may not change or alter any portion of this comment or credits
7
 * of supporting developers from this source code or any supporting source code
8
 * which is considered copyrighted (c) material of the original comment or credit authors.
9
 * This program is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
 *
13
 * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/
14
 * @license http://www.fsf.org/copyleft/gpl.html GNU public license
15
 * @package : XOOPS
16
 * @Module :
17
 * @subpackage :
18
 * @since 2.3.0
19
 * @author John Neill
20
 * @version $Id: xoops_version.php 11483 2013-04-30 08:14:19Z beckmi $
21
 */
22
defined( 'XOOPS_ROOT_PATH' ) or die( 'Restricted access' );
23
24
$modversion = array( 'name' => _XO_MI_MEMBERS_NAME,
25
    'description' => _XO_MI_MEMBERS_DESC,
26
    'author' => 'John Neill, Kazumi Ono',
27
    'license' => 'GNU GPL 2.0',
28
    'license_url' => "www.gnu.org/licenses/gpl-2.0.html",
29
    'help' => 'page=help',
30
    'contributors' => '',
31
    'credits' => 'The Xoops Module Development Team',
32
    'version' => 1.02,
33
    'module_status' => "Final",
34
//	'releasedate' => 'Friday 10.4.2009',
0 ignored issues
show
Unused Code Comprehensibility introduced by
58% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
35
    'official' => 1,
36
    'image' => 'images/slogo.png',
37
    'dirname' => basename( dirname( __FILE__ ) ),
38
    'dirmoduleadmin' => '/Frameworks/moduleclasses/moduleadmin',
39
    'icons16' =>  '../../Frameworks/moduleclasses/icons/16',
40
    'icons32' =>  '../../Frameworks/moduleclasses/icons/32',
41
42
    //about
43
    'author_website_url' => 'http://xoops.org',
44
    'author_website_name' => 'XOOPS',
45
    'module_website_url' => 'http://xoops.org',
46
    'module_website_name' => 'XOOPS',
47
    'release_date' => '2013/04/29',
48
    'min_php' => '5.2.0',
49
    'min_xoops' => '2.5.6',
50
    'min_db' => array('mysql'=>'5.0.7', 'mysqli'=>'5.0.7'),
51
    'min_admin' => '1.1'
52
    );
53
54
/**
55
 * Module Admin
56
 */
57
$modversion['hasAdmin'] = 1;
58
$modversion['system_menu'] = 1;
59
$modversion['adminindex'] = 'admin/index.php';
60
$modversion['adminmenu'] = 'admin/menu.php';
61
/**
62
 * Module Main Main
63
 */
64
$modversion['hasMain'] = 1;
65
66
/**
67
 * Module Templates
68
 */
69
$modversion['templates'][] = array( 'file' => 'xoopsmembers_searchform.html',
70
    'description' => ''
71
    );
72
$modversion['templates'][] = array( 'file' => 'xoopsmembers_searchresults.html',
73
    'description' => ''
74
    );
75