forked from opendcim/openDCIM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreports.php
76 lines (67 loc) · 2.52 KB
/
reports.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
68
69
70
71
72
73
74
75
76
<?php
require_once( "db.inc.php" );
require_once( "facilities.inc.php" );
?>
<!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 Inventory Reporting</title>
<link rel="stylesheet" href="css/inventory.php" type="text/css">
<link rel="stylesheet" href="css/jquery-ui.css" type="text/css">
<!--[if lt IE 9]>
<link rel="stylesheet" href="css/ie.css" type="text/css" />
<![endif]-->
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery-ui.min.js"></script>
</head>
<body>
<div id="header"></div>
<div class="page reports">
<?php
include( "sidebar.inc.php" );
echo '<div class="main">
<h2>',$config->ParameterArray["OrgName"],'</h2>
<h3>',__("Inventory Reports"),'</h3>
<div class="center"><div id="reports">
<div>
<fieldset>
<legend>',__("Contact Reports"),'</legend>
<a href="report_department.php">',__("Department/Contact Report"),'</a>
</fieldset>
<fieldset>
<legend>',__("Asset Reports"),'</legend>
<a href="search_export.php">',__("Search/Export by Data Center"),'</a>
<a href="report_xml_CFD.php">',__("Export Data Center for CFD (XML)"),'</a>
<a href="report_contact.php">',__("Asset Report by Owner"),'</a>
<a href="report_asset.php">',__("Data Center Asset Report"),'</a>
<a href="report_asset_Excel.php">',__("Data Center Asset Report [Excel]"),'</a>
<a href="report_cost.php">',__("Data Center Asset Costing Report"),'</a>
<a href="report_aging.php">',__("Asset Aging Report"),'</a>
<a href="report_vm_by_department.php">',__("Virtual Machines by Department"),'</a>
</fieldset>
</div>
<div>
<fieldset>
<legend>',__("Operational Reports"),'</legend>
<a href="report_exception.php">',__("Data Exceptions Report"),'</a>
<a href="report_diverse_power_exceptions.php">',__("Diverse Power Exceptions Report"),'</a>
<a href="report_outage_simulator.php">',__("Simulated Power Outage Report"),'</a>
<a href="report_power_distribution.php">',__("Power Distribution by Data Center"),'</a>
<a href="report_power_utilization.php">',__("Server Tier Classification Report"),'</a>
</fieldset>
<fieldset>
<legend>',__("Auditing Reports"),'</legend>
<a href="report_audit.php">',__("Cabinet Audit Logs"),'</a>
<a href="report_audit_frequency.php">',__("Cabinet Audit Frequency"),'</a>
<a href="report_surplus.php">',__("Surplus/Salvage Audit Report"),'</a>
</fieldset>
</div>';
?>
</div></div>
</div>
<div class="clear"></div>
</div>
</body>
</html>