Issues (143)

admin/about.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * xDonations 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      {@link http://www.gnu.org/licenses/gpl-2.0.html GNU Public License}
14
 * @package      xDonations
15
 * @since        2.5.0
16
 * @author       Mage, Mamba
17
 **/
18
19
require_once __DIR__ . '/admin_header.php';
20
xoops_cp_header();
0 ignored issues
show
The function xoops_cp_header was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

20
/** @scrutinizer ignore-call */ 
21
xoops_cp_header();
Loading history...
21
22
$adminObject->displayNavigation(basename(__FILE__));
23
$adminObject::setPaypal('[email protected]');
24
$adminObject->displayAbout(false);
25
26
require_once __DIR__ . '/admin_footer.php';
27