29 lines
602 B
PHP
29 lines
602 B
PHP
<?php
|
|
require_once("../../include/initialize.php");
|
|
if(!isset($_SESSION['USERID'])){
|
|
redirect(web_root."admin/index.php");
|
|
}
|
|
// if (!isset($_SESSION['justadmin_ID'])){
|
|
// redirect(WEB_ROOT ."admin/login.php");
|
|
// }
|
|
$view = (isset($_GET['view']) && $_GET['view'] != '') ? $_GET['view'] : '';
|
|
$title ='Report';
|
|
switch ($view) {
|
|
case 'list' :
|
|
|
|
$content = 'list.php';
|
|
break;
|
|
// case 'list' :
|
|
// $content = 'list.php';
|
|
// break;
|
|
|
|
default :
|
|
$content = 'list.php';
|
|
}
|
|
// include '../modal.php';
|
|
require_once '../theme/Templates.php';
|
|
?>
|
|
|
|
|
|
|