File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/class-graph-topinterests.php.tar
includes/gutenberg/site-insights/templates/graph/class-graph-topinterests.php 0000644 00000004120 15155413617 0045632 0 ustar 00 var/www/vhosts/uyarreklam.com.tr/httpdocs/wp-content/plugins/google-analytics-for-wordpress <?php
/**
* Class that handles the output for the Top Interests graph.
*
* Class MonsterInsights_SiteInsights_Template_Graph_Topinterests
*/
class MonsterInsights_SiteInsights_Template_Graph_Topinterests extends MonsterInsights_SiteInsights_Metric_Template {
protected $metric = 'topinterests';
protected $type = 'graph';
public function output(){
$json_data = $this->get_json_data();
if (empty($json_data)) {
return false;
}
return "<div class='monsterinsights-graph-item monsterinsights-graph-{$this->metric}'>
<script type='application/json'>{$json_data}</script>
</div>";
}
protected function get_options() {
if (empty($this->data['interest'])) {
return false;
}
$primaryColor = $this->attributes['primaryColor'];
$secondaryColor = $this->attributes['secondaryColor'];
$textColor = $this->attributes['textColor'];
$data = $this->data['interest'];
$title = __( 'Top Interests', 'google-analytics-for-wordpress' );
$series = array();
$percentages = array();
$labels = array_column($data, 'interest');
foreach ($data as $key => $country) {
$series[$key] = (int) $country['sessions'];
$percentages[$key] = (int) $country['percent'];
}
$options = array(
'series' => array(
array(
'name' => $title,
'data' => $series,
)
),
'chart' => array(
'height' => 430,
'type' => 'bar',
'zoom' => array( 'enabled' => false ),
'toolbar' => array( 'show' => false )
),
'dataLabels' => array(
'enabled' => true,
'style' => array(
'fontSize' => '12px',
'colors' => array( $textColor )
)
),
'colors' => array( $primaryColor, $secondaryColor ),
'title' => array(
'text' => $title,
'align' => 'left',
'style' => array(
'color' => $textColor,
'fontSize' => '20px'
)
),
'plotOptions' => array(
'bar' => array(
'horizontal' => true,
'borderRadius' => 5,
'borderRadiusApplication' => 'end',
'dataLabels' => array(
'position' => 'center'
)
)
),
'xaxis' => array(
'categories' => $labels
)
);
return $options;
}
}