mirror of
https://github.com/GOSTSec/sgminer
synced 2025-02-02 01:44:23 +00:00
miner.php also add current time like single rig page
This commit is contained in:
parent
fe381c14e7
commit
6f8cc9e230
17
miner.php
17
miner.php
@ -27,12 +27,13 @@ $rigs = array('127.0.0.1:4028');
|
|||||||
#
|
#
|
||||||
$here = $_SERVER['PHP_SELF'];
|
$here = $_SERVER['PHP_SELF'];
|
||||||
#
|
#
|
||||||
global $tablebegin, $tableend, $warnfont, $warnoff;
|
global $tablebegin, $tableend, $warnfont, $warnoff, $dfmt;
|
||||||
|
#
|
||||||
$tablebegin = '<tr><td><table border=1 cellpadding=5 cellspacing=0>';
|
$tablebegin = '<tr><td><table border=1 cellpadding=5 cellspacing=0>';
|
||||||
$tableend = '</table></td></tr>';
|
$tableend = '</table></td></tr>';
|
||||||
$warnfont = '<font color=red><b>';
|
$warnfont = '<font color=red><b>';
|
||||||
$warnoff = '</b></font>';
|
$warnoff = '</b></font>';
|
||||||
|
$dfmt = 'H:i:s j-M-Y \U\T\CP';
|
||||||
#
|
#
|
||||||
function htmlhead($checkapi)
|
function htmlhead($checkapi)
|
||||||
{
|
{
|
||||||
@ -203,7 +204,7 @@ function getparam($name, $both = false)
|
|||||||
#
|
#
|
||||||
function fmt($section, $name, $value)
|
function fmt($section, $name, $value)
|
||||||
{
|
{
|
||||||
$dfmt = 'H:i:s j-M-Y \U\T\CP';
|
global $dfmt;
|
||||||
|
|
||||||
$errorclass = ' class=err';
|
$errorclass = ' class=err';
|
||||||
$warnclass = ' class=warn';
|
$warnclass = ' class=warn';
|
||||||
@ -365,11 +366,9 @@ function showhead($cmd, $item, $values)
|
|||||||
#
|
#
|
||||||
function details($cmd, $list, $rig)
|
function details($cmd, $list, $rig)
|
||||||
{
|
{
|
||||||
global $tablebegin, $tableend;
|
global $tablebegin, $tableend, $dfmt;
|
||||||
global $poolcmd, $readonly;
|
global $poolcmd, $readonly;
|
||||||
|
|
||||||
$dfmt = 'H:i:s j-M-Y \U\T\CP';
|
|
||||||
|
|
||||||
$stas = array('S' => 'Success', 'W' => 'Warning', 'I' => 'Informational', 'E' => 'Error', 'F' => 'Fatal');
|
$stas = array('S' => 'Success', 'W' => 'Warning', 'I' => 'Informational', 'E' => 'Error', 'F' => 'Fatal');
|
||||||
|
|
||||||
echo $tablebegin;
|
echo $tablebegin;
|
||||||
@ -559,7 +558,7 @@ function doforeach($cmd, $des, $sum, $head, $datetime)
|
|||||||
{
|
{
|
||||||
global $miner, $port;
|
global $miner, $port;
|
||||||
global $error, $readonly, $notify, $rigs;
|
global $error, $readonly, $notify, $rigs;
|
||||||
global $tablebegin, $tableend, $warnfont, $warnoff;
|
global $tablebegin, $tableend, $warnfont, $warnoff, $dfmt;
|
||||||
|
|
||||||
$header = $head;
|
$header = $head;
|
||||||
$anss = array();
|
$anss = array();
|
||||||
@ -595,6 +594,10 @@ function doforeach($cmd, $des, $sum, $head, $datetime)
|
|||||||
|
|
||||||
if ($datetime)
|
if ($datetime)
|
||||||
{
|
{
|
||||||
|
echo '<tr><td class=sta>Date: '.date($dfmt).'</td></tr>';
|
||||||
|
|
||||||
|
echo $tableend.$tablebegin;
|
||||||
|
|
||||||
$dthead = array('' => 1, 'STATUS' => 1, 'Description' => 1, 'When' => 1);
|
$dthead = array('' => 1, 'STATUS' => 1, 'Description' => 1, 'When' => 1);
|
||||||
showhead('', null, $dthead);
|
showhead('', null, $dthead);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user