Gazelle/sections/reportsv2/index.php

67 lines
1.4 KiB
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
/*
* This is the index page, it is pretty much reponsible only for the switch statement.
*/
enforce_login();
include('array.php');
if(isset($_REQUEST['action'])) {
switch($_REQUEST['action']){
case 'report':
include('report.php');
break;
case 'takereport':
include('takereport.php');
break;
case 'takeresolve':
include('takeresolve.php');
break;
case 'take_pm':
include('take_pm.php');
break;
case 'search':
include('search.php');
break;
case 'new':
include(SERVER_ROOT.'/sections/reportsv2/reports.php');
2013-02-22 08:00:24 +00:00
break;
2011-03-28 14:21:28 +00:00
case 'ajax_new_report':
include('ajax_new_report.php');
break;
case 'ajax_report':
include('ajax_report.php');
break;
case 'ajax_change_resolve':
include('ajax_change_resolve.php');
break;
case 'ajax_taste':
include('ajax_taste.php');
break;
case 'ajax_take_pm':
include('ajax_take_pm.php');
break;
case 'ajax_grab_report':
include('ajax_grab_report.php');
break;
case 'ajax_update_comment':
require('ajax_update_comment.php');
break;
case 'ajax_update_resolve':
require('ajax_update_resolve.php');
break;
case 'ajax_create_report':
require('ajax_create_report.php');
break;
}
} else {
if(isset($_GET['view'])) {
include(SERVER_ROOT.'/sections/reportsv2/static.php');
} else {
include(SERVER_ROOT.'/sections/reportsv2/views.php');
}
}
?>