mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
24 lines
439 B
PHP
24 lines
439 B
PHP
|
<?
|
||
|
enforce_login();
|
||
|
|
||
|
if (empty($_REQUEST['action'])) { $_REQUEST['action'] = ''; }
|
||
|
|
||
|
switch($_REQUEST['action']){
|
||
|
case 'report':
|
||
|
include('report.php');
|
||
|
break;
|
||
|
case 'takereport':
|
||
|
include('takereport.php');
|
||
|
break;
|
||
|
case 'takeresolve':
|
||
|
include('takeresolve.php');
|
||
|
break;
|
||
|
case 'stats':
|
||
|
include(SERVER_ROOT.'/sections/reports/stats.php');
|
||
|
break;
|
||
|
default:
|
||
|
include(SERVER_ROOT.'/sections/reports/reports.php');
|
||
|
break;
|
||
|
}
|
||
|
?>
|