-
Notifications
You must be signed in to change notification settings - Fork 205
/
contactpopup.php
67 lines (60 loc) · 1.71 KB
/
contactpopup.php
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
require_once( 'db.inc.php' );
require_once( 'facilities.inc.php' );
$header=__("Department Contact Listing");
$dept=new Department();
if(!isset($_REQUEST['deptid'])){
// No soup for you.
header('Location: '.redirect());
exit;
}
$deptID=intval($_REQUEST['deptid']);
$contactList=$person->GetPeopleByDepartment($deptID);
$dept->DeptID=$deptID;
$dept->GetDeptByID();
if(isset($config->ParameterArray['UserLookupURL']) && isValidURL($config->ParameterArray['UserLookupURL'])){
$el=1; //enable displaying lookup options
}else{
$el=0; //default to not showing lookup options
}
$subheader=$dept->Name;
?>
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>openDCIM Device Maintenance</title>
<link rel="stylesheet" href="css/inventory.php" type="text/css">
<!--[if lt IE 9]>
<link rel="stylesheet" href="css/ie.css" type="text/css" />
<![endif]-->
<style type="text/css">
div.main { padding: 5px 0; border: 0px; width: 100%; }
</style>
</head>
<body>
<?php include( 'header.inc.php' ); ?>
<div class="main">
<div class="table border centermargin">
<div>
<div>Last Name</div>
<div>First Name</div>
<div>UserID</div>
<?php if($el){ echo ' <div>Lookup</div>';} ?>
</div>
<?php
foreach($contactList as $contactRow){
print "<div>
<div>$contactRow->LastName</div>
<div>$contactRow->FirstName</div>
<div>$contactRow->UserID</div>";
if($el){
print " <div><input type=\"button\" value=\"Contact Lookup\" onclick=\"window.open( '{$config->ParameterArray["UserLookupURL"]}$contactRow->UserID', 'Lookup' );\"></div>";
}
print " </div>\n";
}
?>
</div>
</body>
</html>