Completed
Push — master ( ff4558...64abdf )
by Michael
01:19
created

language/english/modinfo.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
 * Xoops Members Module
4
 *
5
 * You may not change or alter any portion of this comment or credits
6
 * of supporting developers from this source code or any supporting source code
7
 * which is considered copyrighted (c) material of the original comment or credit authors.
8
 * This program is distributed in the hope that it will be useful,
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
 *
12
 * @copyright XOOPS Project (https://xoops.org)
13
 * @license   http://www.fsf.org/copyleft/gpl.html GNU public license
14
 * @package   Xoops Members
15
 * @since     2.3.0
16
 * @author    onokazu
17
 * @author    John Neill
18
 * @version   $Id: index.php catzwolf$
19
 */
20
defined('XOOPS_ROOT_PATH') || die('Restricted access');
21
22
/**
23
 * Module Menu Items
24
 */
25
define('_XO_MI_MEMBERS_NAME', 'Members');
26
define('_XO_MI_MEMBERS_DESC', 'Shows a list of registered users');
27
28
//1.03
29
//Help
30
define('_MI_XOOPSMEMBERS_DIRNAME', basename(dirname(dirname(__DIR__))));
31
define('_MI_XOOPSMEMBERS_HELP_HEADER', __DIR__.'/help/helpheader.tpl');
32
define('_MI_XOOPSMEMBERS_BACK_2_ADMIN', 'Back to Administration of ');
33
define('_MI_XOOPSMEMBERS_OVERVIEW', 'Overview');
34
35
//define('_MI_XOOPSMEMBERS_HELP_DIR', __DIR__);
0 ignored issues
show
Unused Code Comprehensibility introduced by
75% 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...
36
37
//help multi-page
38
define('_MI_XOOPSMEMBERS_DISCLAIMER', 'Disclaimer');
39
define('_MI_XOOPSMEMBERS_LICENSE', 'License');
40
define('_MI_XOOPSMEMBERS_SUPPORT', 'Support');
41