<?php
// Определяем текущуую дату
$date = isset ($_REQUEST['date']) ? func::checkin($_REQUEST['date']) : date("Y-m-d",core::$realtime);
$daten = date("Y-m-d",(strtotime($date)-3600*24));
$datup = date("Y-m-d",(strtotime($date)+3600*24));
if($datestart<=$daten) $datens = '<a href="?stat='.$stat.'&order='.$order.'&date='.$daten.'"><< '.$daten.'</a> | ';
if($date<date("Y-m-d",core::$realtime)) $dateup = '| <a href="?stat='.$stat.'&order='.$order.'&date='.$datup.'">'.$datup.' >></a>';
echo '<div class="col-md-12 col-sm-12 col-xs-12"><div class="panel panel-default">
<b>отчет:</b> Количество посетителей по операторам связи
<div class="panel-heading">'.$datens.'<b>'.$date.'</b> '.$dateup.'</div>';
// Проверяем есть ли в базе выбранная дата
$dates = core:: $db -> queryFetch("SELECT * FROM `top_count_hour` WHERE `url`=? and date =? LIMIT 1;", array($url,$date));
if(!isset($dates['id'])){
echo "<br /><b>Статистики за выбранный вами периoд не найдено.</b><br />";
}else{
// получаем кол во страниц
$r1 = mysql_query("SELECT id FROM `top_ip` WHERE url = '".$url."' and date = '".$date."' GROUP BY operator;");
$count_sites = mysql_num_rows($r1);
$k_page=func::k_page($count_sites,$max);
$page=func::page($k_page);
$start=$max*$page-$max;
$r = core:: $db -> query("SELECT operator, count(id) FROM `top_ip` WHERE url = '".$url."' and date = '".$date."' GROUP BY operator ORDER BY count(id) desc LIMIT $start,$max;");
$count_hours = 0;
echo '<div class="col-md-12 col-sm-12 col-xs-12">
<div class="panel panel-blu">
<div class="panel-heading"><b>График</b></div>';
?>
<script>
var chart;
AmCharts.monthNames = ['Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь'];
AmCharts.shortMonthNames = ['Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь'];
var chart = AmCharts.makeChart("graph_dey", {
"type": "serial",
"theme": "light",
"marginRight": 70,
"dataProvider": [
<?php
while ($row= $r -> fetch()) {
$count_hours++;
if($row['operator']=='0')$row['operator'] = 'Не определен';
echo '{"operator": "'.$row['operator'].'",';
echo '"hit": '.$row['count(id)'].',
"color": "'.sprintf( '#%02X%02X%02X', rand(0, 255), rand(0, 255), rand(0, 255) ).'"
},';
}
?>
],
"valueAxes": [{
"axisAlpha": 0,
"position": "left"
}],
"startDuration": 1,
"graphs": [{
"balloonText": "<div style='margin:5px; font-size:19px;'>[[category]]: <b>[[value]]</b></div>",
"fillColorsField": "color",
"fillAlphas": 0.9,
"lineAlpha": 0.2,
"type": "column",
"valueField": "hit"
}],
"chartCursor": {
"categoryBalloonEnabled": false,
"cursorAlpha": 0,
"zoomable": false
},
"categoryField": "operator",
"categoryAxis": {
"gridPosition": "start",
"labelRotation": 45
},
"export": {
"enabled": true
}
});
</script>
<!-- chart container -->
<div id="graph_dey" style="width: auto; height: 300px;"></div>
<?php
echo '</div></div>';
echo '<div class="col-md-12 col-sm-12 col-xs-12">
<div class="panel panel-blu">';
echo '<div class="panel-heading"><b>Количество посетителей по операторам связи</b></div>
<div class="table-responsive">
<table class="table"><thead><tr><th>Страница</th><th>Посетителей</th></tr></thead>
<tbody> ';
$k_page=func::k_page($count_sites,$max);
$page=func::page($k_page);
$start=$max*$page-$max;
$r = core:: $db -> query("SELECT operator, count(id) FROM `top_ip` WHERE url = '".$url."' and date = '".$date."' GROUP BY operator ORDER BY count(id) desc LIMIT $start,$max;");
while ($row= $r -> fetch()) {
$count_hours++;
$rowhit += $row['count(id)'];
if($row['operator']=='0')$row['operator'] = 'Не определен';
echo '<tr class="success"><td>'.$row['operator'].'</td><td>'.$row['count(id)'].'</td></tr> ';
}
echo '</tbody>
</table>
</div>
';
if ($k_page>1)func::pagination('?stat='.$stat.'&order='.$order.'&date='.$date.'&',$k_page,$page); // Вывод страниц
echo '</div></div>';
}
?>