1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 20:51:53 +02:00

Notes and TODO added.

This commit is contained in:
Cameron 2013-05-15 00:43:19 -07:00
parent 5dc12469f5
commit 9f2b1db7ed

View File

@ -310,9 +310,9 @@ EOF;
{
$data = array();
$data['labels'] = array("January","February","March","April","May","June","July");
$data['labels'] = array("Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday","Monday"); // change to this week.. ie. days of the week.
//TODO Stats for site visitors - members only.
$data['datasets'][] = array(
'fillColor' => "rgba(220,220,220,0.5)",
'strokeColor' => "rgba(220,220,220,1)",
@ -322,6 +322,8 @@ EOF;
);
//TODO Stats for site visitors - all
$data['datasets'][] = array(
'fillColor' => "rgba(151,187,205,0.5)",
'strokeColor' => "rgba(151,187,205,1)",
@ -337,7 +339,7 @@ EOF;
$text = $cht->render('canvas');
$text .= "<div class='center'><small>Please note: this are demo stats - upgrade work in progress.</small></div>";
$text .= "<div class='center'><small>Please note: these are demo stats - upgrade work in progress.</small></div>";
return $text;