mambax7 /
extcal
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
|
0 ignored issues
–
show
|
|||
| 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 | |||
| 12 | /** |
||
| 13 | * @copyright {@link https://xoops.org/ XOOPS Project} |
||
| 14 | * @license {@link http://www.gnu.org/licenses/gpl-2.0.html GNU GPL 2 or later} |
||
| 15 | * @package extcal |
||
| 16 | * @since |
||
| 17 | * @author XOOPS Development Team, |
||
| 18 | */ |
||
| 19 | |||
| 20 | require_once __DIR__ . '/../../../mainfile.php'; |
||
| 21 | $moduleDirName = basename(dirname(__DIR__)); |
||
| 22 | |||
| 23 | if (!defined('EXTCAL_DIRNAME')) { |
||
| 24 | define('EXTCAL_DIRNAME', $moduleDirName); |
||
| 25 | define('EXTCAL_PATH', XOOPS_ROOT_PATH . '/modules/' . EXTCAL_DIRNAME); |
||
| 26 | define('EXTCAL_URL', XOOPS_URL . '/modules/' . EXTCAL_DIRNAME); |
||
| 27 | define('EXTCAL_ADMIN', EXTCAL_URL . '/admin/index.php'); |
||
| 28 | define('EXTCAL_ROOT_PATH', XOOPS_ROOT_PATH . '/modules/' . EXTCAL_DIRNAME); |
||
| 29 | define('EXTCAL_AUTHOR_LOGOIMG', EXTCAL_URL . '/assets/images/logoModule.png'); |
||
| 30 | define('EXTCAL_UPLOAD_URL', XOOPS_UPLOAD_URL . '/' . EXTCAL_DIRNAME); // WITHOUT Trailing slash |
||
| 31 | define('EXTCAL_UPLOAD_PATH', XOOPS_UPLOAD_PATH . '/' . EXTCAL_DIRNAME); // WITHOUT Trailing slash |
||
| 32 | } |
||
| 33 | |||
| 34 | //Configurator |
||
| 35 | return array( |
||
| 36 | 'name' => 'Module Configurator', |
||
| 37 | 'uploadFolders' => array( |
||
| 38 | EXTCAL_UPLOAD_PATH, |
||
| 39 | EXTCAL_UPLOAD_PATH . '/etablissement' |
||
| 40 | ), |
||
| 41 | // 'copyFiles' => array( |
||
|
0 ignored issues
–
show
Unused Code
Comprehensibility
introduced
by
43% 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...
|
|||
| 42 | // EXTCAL_UPLOAD_PATH, |
||
| 43 | // EXTCAL_UPLOAD_PATH . '/etablissement' |
||
| 44 | // ), |
||
| 45 | |||
| 46 | 'templateFolders' => array( |
||
| 47 | '/templates/', |
||
| 48 | '/templates/blocks/', |
||
| 49 | '/templates/admin/' |
||
| 50 | |||
| 51 | ), |
||
| 52 | 'oldFiles' => array( |
||
| 53 | '/include/update_functions.php', |
||
| 54 | '/include/install_functions.php' |
||
| 55 | ), |
||
| 56 | ); |
||
| 57 | |||
| 58 | // module information |
||
| 59 | $mod_copyright = "<a href='https://xoops.org' title='XOOPS Project' target='_blank'> |
||
| 60 | <img src='" . EXTCAL_AUTHOR_LOGOIMG . "' alt='XOOPS Project'></a>"; |
||
| 61 |
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.