Completed
Push — master ( 1db5db...8743f5 )
by Michael
06:44
created

index.php ➔ bookshop_upload()   B

Complexity

Conditions 6
Paths 8

Size

Total Lines 29
Code Lines 21

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 6
eloc 21
c 1
b 0
f 0
nc 8
nop 1
dl 0
loc 29
rs 8.439
1
<?php
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    The XOOPS Project http://sourceforge.net/projects/xoops/
14
 * @license      GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
15
 * @package
16
 * @author       XOOPS Development Team
17
 */
18
19
require_once dirname(dirname(dirname(__DIR__))) . '/include/cp_header.php';
20
include_once __DIR__ . '/admin_header.php';
21
22
xoops_cp_header();
23
24
$indexAdmin = new ModuleAdmin();
25
26
echo $indexAdmin->addNavigation(basename(__FILE__));
27
echo $indexAdmin->renderIndex();
28
29
include_once __DIR__ . '/admin_footer.php';
30