Файл: whmcs/templates/portal/serverstatus.tpl
Строк: 53
{literal}
<script>
function getStats(num) {
jQuery.post('serverstatus.php', 'getstats=1&num='+num, function(data)
{
jQuery("#load"+num).html(data.load);
jQuery("#uptime"+num).html(data.uptime);
},'json');
}
function checkPort(num,port) {
jQuery.post('serverstatus.php', 'ping=1&num='+num+'&port='+port,
function(data) {
jQuery("#port"+port+"_"+num).html(data);
});
}
</script>
{/literal}
<p>{$LANG.serverstatusheadingtext}</p>
<table
width="100%" border="0" align="center"
cellpadding="10" cellspacing="0"
class="data">
<tr>
<th>{$LANG.servername}</th>
<th>HTTP</th>
<th>FTP</th>
<th>POP3</th>
<th>{$LANG.serverstatusphpinfo}</th>
<th>{$LANG.serverstatusserverload}</th>
<th>{$LANG.serverstatusuptime}</th>
</tr>
{foreach
key=num item=server from=$servers}
<tr>
<td>{$server.name}</td>
<td
id="port80_{$num}"><img
src="images/loadingsml.gif" alt="{$LANG.loading}"
/></td>
<td id="port21_{$num}"><img
src="images/loadingsml.gif" alt="{$LANG.loading}"
/></td>
<td id="port110_{$num}"><img
src="images/loadingsml.gif" alt="{$LANG.loading}"
/></td>
<td><a href="{$server.phpinfourl}"
target="_blank">{$LANG.serverstatusphpinfo}</a></td>
<td id="load{$num}"><img
src="images/loadingsml.gif" alt="{$LANG.loading}"
/></td>
<td id="uptime{$num}"><img
src="images/loadingsml.gif" alt="{$LANG.loading}"
/><script> checkPort({$num},80); checkPort({$num},21);
checkPort({$num},110); getStats({$num}); </script></td>
</tr>
{foreachelse}
<tr>
<td
colspan="7">{$LANG.serverstatusnoservers}</td>
</tr>
{/foreach}
</table>
<br />