File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/class-graph-newvsreturning.php.tar
includes/gutenberg/site-insights/templates/graph/class-graph-newvsreturning.php 0000644 00000004546 15155311507 0046176 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_Newvsreturning
*/
class MonsterInsights_SiteInsights_Template_Graph_Newvsreturning extends MonsterInsights_SiteInsights_Metric_Template {
protected $metric = 'newvsreturning';
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['newvsreturn'])) {
return false;
}
$primaryColor = $this->attributes['primaryColor'];
$secondaryColor = $this->attributes['secondaryColor'];
$textColor = $this->attributes['textColor'];
$data = $this->data['newvsreturn'];
$title = __( 'New vs Returning', 'google-analytics-for-wordpress' );
$options = array(
'series' => array(
$data['new'],
$data['returning'],
),
'chart' => array(
'width' => "100%",
'height' => 'auto',
'type' => 'donut',
),
'colors' => array( $primaryColor, $secondaryColor ),
'title' => array(
'text' => $title,
'align' => 'left',
'style' => array(
'color' => $this->get_color_value($textColor),
'fontSize' => '20px'
)
),
'labels' => array(
__( 'New Visitors', 'google-analytics-for-wordpress' ),
__( 'Returning Visitors', 'google-analytics-for-wordpress' ),
),
'plotOptions' => array(
'plotOptions' => array(
'pie' => array(
'donut' => array( 'size' => '65%' )
)
)
),
'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(
array(
'breakpoint' => 767,
'options' => array(
'legend' => array(
'show' => false
)
)
)
)
);
return $options;
}
}