forked from proche-rainmaker/phplicensewatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.php
44 lines (34 loc) · 1.43 KB
/
admin.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
<?php
##################################################
# We need authentication on this page
##################################################
include_once('./auth.php');
require_once("common.php");
print_header("PHP Licensewatcher Admin Page");
?>
</head><body>
<h1>PHP Licensewatcher Admin Page</h1>
<p>This page contains links to pages that are usually unavailable to general population</p>
<ul>
<li><a href="index.php">License server health/utilization (Start Page)</a></li>
<li><a href="license_alert.php?nomail=1">License Alert</a> - this page will show you what licenses are expiring within the specified time frame. Default is 10 days.</li>
<?php
if (is_array($monitor_license) ){
echo('<li><a href="utilization.php">Today\'s license utilization</a> - this page shows you graphs of the usage of a particular license.</li>');
}
if (isset($monitor_license) && sizeof($monitor_license) > 0 ){
echo('<li><a href="monitor.php">Daily/Weekly/Monthly license utilization trends</a> - this page shows you graphs of the usage of a particular license.</li>');
}
/*
if ( isset($log_file) && sizeof($log_file) > 0 ){
echo('<li><a href="denials.php">FlexLM denials</a> - this is the aggregate number of denials for particular feature.</li>');
echo('<li><a href="checkouts.php">FlexLM checkouts</a> - how many time a particular license has been checked out by a user.</li>');
}
*/
?>
</ul>
<?php
include_once('./version.php');
?>
</body>
</html>