Ejemplo n.º 1
0
    $info['apistats'] = [];
    //Db::query("select errorCode, count(*) count from zz_api_log where requestTime >= date_sub(now(), interval 1 hour) group by 1");
    $apitable = '
	<table class="table table-striped table-hover table-bordered">
	  <tr><th>Error</th><th>Count</th></tr>';
    foreach ($info['apistats'] as $data) {
        $apitable .= '<tr>';
        $apitable .= '<td>';
        if ($data['errorCode'] == null) {
            $apitable .= 'No error';
        } else {
            $apitable .= $data['errorCode'];
        }
        $apitable .= '</td>';
        $apitable .= '<td>';
        $apitable .= number_format($data['count']);
        $apitable .= '</td>';
        $apitable .= '</tr>';
    }
    $apitable .= '</table>';
    $output = str_replace('{apitable}', $apitable, $output);
    $info['pointValues'] = Points::getPointValues();
    $pointtable = '<ul>';
    foreach ($info['pointValues'] as $points) {
        $pointtable .= '<li>' . $points[0] . ': ' . $points[1] . '</li>';
    }
    $pointtable .= '</ul>';
    $output = str_replace('{pointsystem}', $pointtable, $output);
}
// Load the information page html, which is just the bare minimum to load base.html and whatnot, and then spit out the markdown output!
$app->render('information.html', array('data' => $output));
Ejemplo n.º 2
0
<?php

/* zKillboard
 * Copyright (C) 2012-2013 EVE-KILL Team and EVSCO.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
$info = array();
if ($page == "statistics") {
    $info["kills"] = Storage::retrieve("KillCount");
    $info["ignored"] = Db::queryField("select count(*) count from zz_killmails where processed = 3", "count", array(), 300);
    $info["total"] = Storage::retrieve("ActualKillCount");
    //$info["apicallsprhour"] = json_encode(Db::query("select hour(requestTime) as x, count(*) as y from ( select requestTime from zz_api_log where requestTime >= date_sub(now(), interval 24 hour)) as foo group by 1 order by requestTime", array(), 300));
    //var_dump($info);
}
$info["pointValues"] = Points::getPointValues();
$app->render("information.html", array("pageview" => $page, "info" => $info));