You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
648 B
26 lines
648 B
<?php |
|
# |
|
function dousperf($data, $user) |
|
{ |
|
$ans = getShiftData($user); |
|
|
|
$pg = '<h1>User Shift Performance</h1><br>'; |
|
if ($ans['STATUS'] == 'ok' and $ans['DATA'] != '') |
|
{ |
|
$pg .= "<canvas id=can width=1 height=1>"; |
|
$pg .= "A graph will show here if your browser supports html5/canvas"; |
|
$pg .= "</canvas>\n"; |
|
$data = str_replace(array("\\","'"), array("\\\\","\\'"), $ans['DATA']); |
|
$pg .= "<script src='/can.js'></script>\n"; |
|
$pg .= "<script type='text/javascript'>dodrw('$data');</script>\n"; |
|
} |
|
|
|
return $pg; |
|
} |
|
# |
|
function show_usperf($info, $page, $menu, $name, $user) |
|
{ |
|
gopage($info, NULL, 'dousperf', $page, $menu, $name, $user); |
|
} |
|
# |
|
?>
|
|
|