File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/class-graph-gender.php.tar
includes/gutenberg/site-insights/templates/graph/class-graph-gender.php 0000644 00000004102 15155404357 0044334 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 New vs Returning graph.
*
* Class MonsterInsights_SiteInsights_Template_Graph_Gender
*/
class MonsterInsights_SiteInsights_Template_Graph_Gender extends MonsterInsights_SiteInsights_Metric_Template {
protected $metric = 'gender';
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-donut-chart monsterinsights-graph-{$this->metric}'>
<script type='application/json'>{$json_data}</script>
</div>";
}
protected function get_options() {
if (empty($this->data['gender'])) {
return false;
}
$primaryColor = $this->attributes['primaryColor'];
$secondaryColor = $this->attributes['secondaryColor'];
$textColor = $this->attributes['textColor'];
$title = __( 'Gender Breakdown', 'google-analytics-for-wordpress' );
$data = $this->data['gender'];
$series = array_column($data, 'percent');
$labels = array_column($data, 'gender');
$options = array(
'series' => $series,
'chart' => array(
'height' => 'auto',
'type' => 'donut',
),
'colors' => array( '#ebebeb', $primaryColor, $secondaryColor ),
'title' => array(
'text' => $title,
'align' => 'left',
'style' => array(
'color' => $textColor,
'fontSize' => '20px'
)
),
'labels' => $labels,
'legend' => array(
'position' => 'right',
'horizontalAlign' => 'center',
'floating' => false,
'fontSize' => '17px',
'height' => '100%',
'markers' => array(
'width' => 30,
'height' => 30,
'radius' => 30,
),
'formatter' => array(
'args' => 'seriesName, opts',
'body' => 'return [seriesName, "<strong> " + opts.w.globals.series[opts.seriesIndex] + "%</strong>"];'
)
),
'dataLabels' => array(
'enabled' => false
),
'responsive' => array(
0 => array(
'breakpoint' => 767,
'options' => array(
'legend' => array(
'show' => false
)
)
)
)
);
return $options;
}
}