Completed
Push — master ( 76b4a1...141e43 )
by Michael
06:17 queued 02:44
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
// Module Info
3
// The name of this module
4
    define('_MI_XFGB_NAME', 'Guestbook');
5
    define('_MI_XFGB_DESC', 'Visitors can sign on your Guestbook');
6
//Popup menu
7
    define('_MI_XFGB_CONF_FORM', 'Configure form');
8
    define('_MI_XFGB_MSG_MANAGE', 'Messages manager');
9
    define('_MI_XFGB_COUNTRYMANAGE', 'Country manager');
10
// Options Preferences
11
    define('_MI_XFGB_NBMSG', 'Number of messages per page');
12
    define('_MI_XFGB_ANONSIGN', 'Anonymous allowed to sign the Guestbook');
13
    define('_MI_XFGB_MODERATE', 'Moderation');
14
    define('_MI_XFGB_MODERATEDSC', 'All messages are posted pending verification.');
15
    define('_MI_XFGB_SENDMAIL', 'Send mail to the webmaster for new message');
16
    define('_MI_XFGB_AVATAR', 'Display avatar and rank');
17
// v2.2
18
    define('_MI_XFGB_MAXSIZEIMG', 'Picture : maximum size (bytes)');
19
    define('_MI_XFGB_MAXSIZEIMG_DESC', '0 to prevent upload');
20
    define('_MI_XFGB_MAXHEIGHTIMG', 'Picture : max. height');
21
    define('_MI_XFGB_MAXWIDTHIMG', 'Pictures : max. width');
22
    // v2.30
23
    define('_MI_XFGB_FLAGDIR', 'Repertoire of the images: <font color=\'#FF0000\'>do not modify</font>');
24
    define('_MI_XFGB_COUNTRY_CAPTION', 'Name for the images (country, region,...)');
25
    define('_MI_XFGB_NBFLAGS', 'Number of images (flags) per line');
26
    define('_MI_XFGB_COUNTRY', 'Country');
27
    define('_MI_XFGB_OTHER', 'Other');
28
    define('_AM_XFGB_INSTALL_IMG', 'Image pack');
29
    define('_AM_XFGB_IMG_MANAGER', 'Orphan Image');
30
//Block
31
    define('_MI_XFGUESTBOOK_BNAME1', 'Visit Guestbook');
32
// index.php
33
    define('_MI_XFGB_ADMIN_HOME', 'Home');
34
    define('_MI_XFGB_ADMIN_HOME_DESC', 'Back to Home');
35
    define('_MI_XFGB_ADMIN_ABOUT', 'About');
36
//    if (!defined('_AM_XFGB_IP')) {
0 ignored issues
show
Unused Code Comprehensibility introduced by
60% 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...
37
//        define('_AM_XFGB_IP', 'IP');
38
//    }
39
40
    define('_MI_XFGB_SHOWEMAIL', 'Visualize the button email on the all messages');
41