<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>daloRADIUS</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/1.css" type="text/css" media="screen,projection" />
<link rel="stylesheet" href="css/form-field-tooltip.css" type="text/css" media="screen,projection" />
</head>
<script src="library/javascript/pages_common.js" type="text/javascript"></script>
<script src="library/javascript/rounded-corners.js" type="text/javascript"></script>
<script src="library/javascript/form-field-tooltip.js" type="text/javascript"></script>
<body>
<?php
include_once ("lang/main.php");
?>
<div id="wrapper">
<div id="innerwrapper">
<?php
$m_active = "Graphs";
include_once ("include/menu/menu-items.php");
include_once ("include/menu/graphs-subnav.php");
include_once("include/management/autocomplete.php");
?>
<div id="sidebar">
<h2>Graphs</h2>
<h3>User Graph</h3>
<ul class="subnav">
<li><a href="javascript:document.overall_logins.submit();"><b>»</b>
<img src='images/icons/graphsGeneral.gif' border='0'>
<?php echo $l['button']['UserLogins'] ?></a>
<form name="overall_logins" action="graphs-overall_logins.php" method="post" class="sidebar">
<input name="username" type="text" id="usernameLogins" <?php if ($autoComplete) echo "autocomplete='off'"; ?>
onClick='javascript:__displayTooltip();'
tooltipText='<?php echo $l['Tooltip']['Username']; ?> <br/>'
value="<?php if (isset($overall_logins_username)) echo $overall_logins_username; ?>">
<select class="generic" name="type" type="text">
<option value="daily"> Daily
<option value="monthly"> Monthly
<option value="yearly"> Yearly
</select>
</form>
</li>
<li><a href="javascript:document.overall_download.submit();"><b>»</b>
<img src='images/icons/graphsGeneral.gif' border='0'>
<?php echo $l['button']['UserDownloads'] ?></a>
<form name="overall_download" action="graphs-overall_download.php" method="post" class="sidebar">
<input name="username" type="text" id="usernameDownloads" <?php if ($autoComplete) echo "autocomplete='off'"; ?>
onClick='javascript:__displayTooltip();'
tooltipText='<?php echo $l['Tooltip']['Username']; ?> <br/>'
value="<?php if (isset($overall_download_username)) echo $overall_download_username; ?>">
<select class="generic" name="type" type="text">
<option value="daily"> Daily
<option value="monthly"> Monthly
<option value="yearly"> Yearly
</select>
</form>
</li>
<li><a href="javascript:document.overall_upload.submit();"><b>»</b>
<img src='images/icons/graphsGeneral.gif' border='0'>
<?php echo $l['button']['UserUploads'] ?></a>
<form name="overall_upload" action="graphs-overall_upload.php" method="post" class="sidebar">
<input name="username" type="text" id="usernameUploads" <?php if ($autoComplete) echo "autocomplete='off'"; ?>
onClick='javascript:__displayTooltip();'
tooltipText='<?php echo $l['Tooltip']['Username']; ?> <br/>'
value="<?php if (isset($overall_upload_username)) echo $overall_upload_username; ?>">
<select class="generic" name="type" type="text">
<option value="daily"> Daily
<option value="monthly"> Monthly
<option value="yearly"> Yearly
</select>
</form>
</li>
</ul>
<h3>Statistics</h3>
<ul class="subnav">
<li><a href="javascript:document.alltime_logins.submit();"><b>»</b>
<img src='images/icons/graphsGeneral.gif' border='0'>
<?php echo $l['button']['TotalLogins'] ?></a>
<form name="alltime_logins" action="graphs-alltime_logins.php" method="post" class="sidebar">
<select class="generic" name="type" type="text">
<option value="daily"> Daily
<option value="monthly"> Monthly
<option value="yearly"> Yearly
</select>
</form></li>
<li><a href="javascript:document.alltime_traffic_compare.submit();"><b>»</b>
<img src='images/icons/graphsGeneral.gif' border='0'>
<?php echo $l['button']['TotalTraffic'] ?></a>
<form name="alltime_traffic_compare" action="graphs-alltime_traffic_compare.php" method="post"
class="sidebar">
<select class="generic" name="type" type="text">
<option value="daily"> Daily
<option value="monthly"> Monthly
<option value="yearly"> Yearly
</select>
</form></li>
</ul>
<br/><br/>
<h2>Search</h2>
<input name="" type="text" value="Search" />
</div>
<?php
include_once("include/management/autocomplete.php");
if ($autoComplete) {
echo "<script type=\"text/javascript\">
autoComEdit = new DHTMLSuite.autoComplete();
autoComEdit.add('usernameLogins','include/management/dynamicAutocomplete.php','_small','getAjaxAutocompleteUsernames');
autoComEdit = new DHTMLSuite.autoComplete();
autoComEdit.add('usernameDownloads','include/management/dynamicAutocomplete.php','_small','getAjaxAutocompleteUsernames');
autoComEdit = new DHTMLSuite.autoComplete();
autoComEdit.add('usernameUploads','include/management/dynamicAutocomplete.php','_small','getAjaxAutocompleteUsernames');
</script>";
}
?>
<script type="text/javascript">
var tooltipObj = new DHTMLgoodies_formTooltip();
tooltipObj.setTooltipPosition('right');
tooltipObj.setPageBgColor('#EEEEEE');
tooltipObj.setTooltipCornerSize(15);
tooltipObj.initFormFieldTooltip();
</script>