Example #1
0
// require you to be a member of the super-admin group
session_require(array('group' => '1', 'admin_flags' => 'A'));
$request = HTTPRequest::instance();
$group_id = $request->getValidated('group_id', 'GroupId');
if (!$group_id) {
    $group_id = 0;
}
$year = $request->getValidated('year', 'uint');
if (!$year) {
    $year = gmstrftime("%Y", time());
}
$sql = "SELECT month,day,site_views,subdomain_views FROM stats_site ORDER BY month ASC, day ASC";
$res = db_query($sql);
$i = 0;
while ($row = db_fetch_array($res)) {
    $xdata[$i] = $i;
    $xlabel[$i] = substr($row['month'], 4) + 1 - 1 . "/" . $row['day'];
    $ydata1[$i] = $row["site_views"] + $row["subdomain_views"];
    ++$i;
}
$graph = new Graph(750, 550);
$data1 = $graph->AddData($xdata, $ydata1, $xlabel);
$graph->DrawGrid('gray');
$graph->LineGraph($data1, 'red');
$graph->SetTitle("Codendi Page Views");
$graph->SetSubTitle("Page Views (RED) since beginning of time ( {$i} days )");
$graph->SetxTitle('Date');
$graph->SetyTitle('Views (RED)');
$graph->DrawAxis();
//$graph->showDebug();
$graph->ShowGraph('png');
Example #2
0
    $xlabel[$i] = $row['month'] . ($row['day'] ? "/" . $row['day'] : '');
    $ydata1[$i] = $row["site_views"] + $row["subdomain_views"];
    ++$i;
}
$graph = new Graph(750, 550);
//
// Need at least 2 data points
//
if ($i == 0) {
    $xdata[0] = 0;
    $xlabel[0] = "";
    $ydata1[1] = 0;
    $xdata[1] = 1;
    $xlabel[1] = "";
    $ydata1[1] = 0;
}
if ($i == 1) {
    $xdata[1] = 1;
    $xlabel[1] = $xlabel[0];
    $ydata1[1] = $ydata1[0];
}
$graph->SetTitle(_('Gforge Page Views'));
$graph->SetSubTitle(sprintf(_('Total Page Views (RED) (%1$s days)'), $i));
$data1 = $graph->AddData($xdata, $ydata1, $xlabel);
$graph->LineGraph($data1, 'red');
$graph->DrawGrid('gray');
$graph->SetxTitle(_('Date'));
$graph->SetyTitle(_('Views (RED)'));
$graph->DrawAxis();
//$graph->showDebug();
$graph->ShowGraph('png');