Files
wordpress-preseed/wp-content/plugins/wp-statistics/includes/log/widgets/browsers.php
2019-09-11 19:08:46 +02:00

87 lines
3.2 KiB
PHP

<?php
function wp_statistics_generate_browsers_postbox_content() {
global $wpdb, $WP_Statistics;
$id = 'browser-stats-' . rand( 111, 999 );
$Browsers = wp_statistics_ua_list();
$BrowserVisits = array();
$total = 0;
$count = 0;
$topten = 0;
$topten_browser_name = array();
$topten_browser_value = array();
foreach ( $Browsers as $Browser ) {
//Get List Of count Visitor By Agent
$BrowserVisits[ $Browser ] = wp_statistics_useragent( $Browser );
//Sum This agent
$total += $BrowserVisits[ $Browser ];
}
//Add Unknown Agent to total
$total += $other_agent_count = $wpdb->get_var( 'SELECT COUNT(*) FROM `' . $wpdb->prefix . 'statistics_visitor` WHERE `agent` NOT IN (\'' . implode( "','", $Browsers ) . '\')' );
//Sort Browser List By Visitor ASC
arsort( $BrowserVisits );
foreach ( $BrowserVisits as $key => $value ) {
$topten += $value;
$count ++;
if ( $count > 9 ) {
break;
}
//Get Browser name
$browser_name = wp_statistics_get_browser_list( strtolower( $key ) );
$topten_browser_name[] = "'" . $browser_name . "'";
$topten_browser_value[] = $value;
$topten_browser_color[] = wp_statistics_generate_rgba_color( $count, '0.4' );
}
if ( $topten_browser_name and $topten_browser_value and $other_agent_count > 0 ) {
$topten_browser_name[] = "'" . __( 'Other', 'wp-statistics' ) . "'";
$topten_browser_value[] = ( $total - $topten );
$topten_browser_color[] = wp_statistics_generate_rgba_color( 10, '0.4' );
}
?>
<canvas id="<?php echo $id; ?>" height="220"></canvas>
<script>
var ctx = document.getElementById("<?php echo $id; ?>").getContext('2d');
<?php if(is_rtl()) { ?> Chart.defaults.global.defaultFontFamily = "tahoma"; <?php } ?>
var ChartJs = new Chart(ctx, {
type: 'pie',
data: {
labels: [<?php echo implode( ', ', $topten_browser_name ); ?>],
datasets: [{
label: '<?php _e( 'Browsers', 'wp-statistics' ); ?>',
data: [<?php echo implode( ', ', $topten_browser_value ); ?>],
backgroundColor: [<?php echo implode( ', ', $topten_browser_color ); ?>],
}]
},
options: {
responsive: true,
legend: {
position: 'bottom',
},
animation: {
duration: 0,
},
tooltips: {
callbacks: {
label: function (tooltipItem, data) {
var dataset = data.datasets[tooltipItem.datasetIndex];
var total = dataset.data.reduce(function (previousValue, currentValue, currentIndex, array) {
return previousValue + currentValue;
});
var currentValue = dataset.data[tooltipItem.index];
var precentage = Math.floor(((currentValue / total) * 100) + 0.5);
return precentage + "% - " + data.labels[tooltipItem.index];
}
}
}
}
});
</script>
<?php
}