File: /opt/aphex/sites/apotheca.cc/wp-content/plugins/stopbadbots/dashboard/botsgraph.php
<?php namespace stopbadbots_graph;
if (!defined('ABSPATH'))
exit; // Exit if accessed directly
include("calcula_stats.php");
echo '<script type="text/javascript">';
echo 'jQuery(function() {';
echo 'var d100999 = [';
for($i=0; $i<15; $i++)
{
//graph.push([i,demand[i]]);
echo '[';
echo esc_attr($i);
echo ',';
echo esc_attr($array30[$i]);
echo ']';
if($i < 14)
echo ',';
}
echo '];';
echo 'var ticks = [';
for($i=0; $i<15; $i++)
{
// ticks.push([i,dates[i]]);
echo '[';
echo esc_attr($i);
echo ',';
echo esc_attr(substr($array30d[$i],2));
echo ']';
if($i < 14)
echo ',';
}
echo '];';
?>
var options = {
series: {
lines: { show: true },
points: { show: true },
color: "#ff0000"
},
grid: { hoverable: true,
clickable: true,
borderColor: "#CCCCCC",
color: "#333333",
backgroundColor: { colors: ["#fff", "#eee"]}
},
xaxis:{
font:{
size:8,
style:"italic",
weight:"bold",
family:"sans-serif",
color: "#616161",
variant:"small-caps"
},
ticks: ticks,
/* minTickSize: [1, "day"] */
},
<?php
echo 'yaxis: {
font:{
size:10,
style:"italic",
weight:"bold",
family:"sans-serif",
color: "#616161",
variant:"small-caps"
},';
echo 'tickFormatter: function suffixFormatter(val, axis) {return (val.toFixed(0)); }';
echo '},';
?>
};
<?php
echo 'jQuery.plot("#placeholder100999", [ d100999 ], options);';
// echo 'jQuery.plot("#placeholder100"), [d2], options);';
echo '});';
echo '</script>';
$stopbadbots_current__url = esc_url($_SERVER['REQUEST_URI']);
if(stripos($stopbadbots_current__url, 'page=stop_bad_bots_plugin') === false)
echo '<div id="placeholder100999" style="width:100% !important; max-width:95% !important; height:150px; margin-top: -20px;"></div>';
else
echo '<div id="placeholder100999" style="width:100% !important; max-width:95% !important; height:265px; margin-top: -20px;"></div>';
?>