-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.php
More file actions
37 lines (25 loc) · 1.7 KB
/
Copy pathview.php
File metadata and controls
37 lines (25 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
require_once './library/configf.php';
require_once './library/functionsf.php';
//$_SESSION['login_return_url'] = $_SERVER['REQUEST_URI'];
checkUser();
$mod = (isset($_GET['mod']) && $_GET['mod'] != '') ? $_GET['mod'] : '';
$view = (isset($_GET['view']) && $_GET['view'] != '') ? $_GET['view'] : '';
if($mod == 'super'){
switch ($view) {
case 'compDetails' :
$content = 'adminCompDetails.php';
$pageTitle = 'FIR Management System - View Complains Detail';
break;
case 'compCloseDetails' :
$content = 'adminCompCloseDetails.php';
$pageTitle = 'FIR Management System - View Close Complains';
break;
case 'viewByCompID' :
$content = 'viewByCompID.php';
$pageTitle = 'Complain Management System - Give Your Complains';
break;
}//switch
}//if
require_once './include/template.php';
?>