mambax7 /
xdonations
| 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
Bug
introduced
by
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 |