File "pie-chart.php"
Full Path: /home/shadsolw/public_html/wp-content/plugins/edge-core/shortcodes/pie-chart/pie-chart.php
File size: 5.43 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace EdgeCore\CPT\Shortcodes\PieChart;
use EdgeCore\Lib;
class PieChart implements Lib\ShortcodeInterface {
private $base;
public function __construct() {
$this->base = 'edgtf_pie_chart';
add_action( 'vc_before_init', array( $this, 'vcMap' ) );
}
public function getBase() {
return $this->base;
}
public function vcMap() {
if ( function_exists( 'vc_map' ) ) {
vc_map(
array(
'name' => esc_html__( 'Edge Pie Chart', 'edge-core' ),
'base' => $this->getBase(),
'icon' => 'icon-wpb-pie-chart extended-custom-icon',
'category' => esc_html__( 'by EDGE', 'edge-core' ),
'allowed_container_element' => 'vc_row',
'params' => array(
array(
'type' => 'textfield',
'param_name' => 'custom_class',
'heading' => esc_html__( 'Custom CSS Class', 'edge-core' ),
'description' => esc_html__( 'Style particular content element differently - add a class name and refer to it in custom CSS', 'edge-core' )
),
array(
'type' => 'textfield',
'param_name' => 'percent',
'heading' => esc_html__( 'Percentage', 'edge-core' )
),
array(
'type' => 'colorpicker',
'param_name' => 'percent_color',
'heading' => esc_html__( 'Percentage Color', 'edge-core' ),
'dependency' => array( 'element' => 'percent', 'not_empty' => true )
),
array(
'type' => 'colorpicker',
'param_name' => 'active_color',
'heading' => esc_html__( 'Pie Chart Active Color', 'edge-core' )
),
array(
'type' => 'colorpicker',
'param_name' => 'inactive_color',
'heading' => esc_html__( 'Pie Chart Inactive Color', 'edge-core' )
),
array(
'type' => 'textfield',
'param_name' => 'size',
'heading' => esc_html__( 'Pie Chart Size (px)', 'edge-core' )
),
array(
'type' => 'textfield',
'param_name' => 'title',
'heading' => esc_html__( 'Title', 'edge-core' )
),
array(
'type' => 'dropdown',
'param_name' => 'title_tag',
'heading' => esc_html__( 'Title Tag', 'edge-core' ),
'value' => array_flip( aalto_edge_get_title_tag( true ) ),
'save_always' => true,
'dependency' => array( 'element' => 'title', 'not_empty' => true )
),
array(
'type' => 'colorpicker',
'param_name' => 'title_color',
'heading' => esc_html__( 'Title Color', 'edge-core' ),
'dependency' => array( 'element' => 'title', 'not_empty' => true )
),
array(
'type' => 'textarea',
'param_name' => 'text',
'heading' => esc_html__( 'Text', 'edge-core' )
),
array(
'type' => 'colorpicker',
'param_name' => 'text_color',
'heading' => esc_html__( 'Text Color', 'edge-core' ),
'dependency' => array( 'element' => 'text', 'not_empty' => true )
)
)
)
);
}
}
public function render( $atts, $content = null ) {
$args = array(
'custom_class' => '',
'percent' => '69',
'percent_color' => '',
'active_color' => '',
'inactive_color' => '',
'size' => '',
'title' => '',
'title_tag' => 'h4',
'title_color' => '',
'text' => '',
'text_color' => ''
);
$params = shortcode_atts( $args, $atts );
$params['holder_classes'] = $this->getHolderClasses( $params );
$params['pie_chart_data'] = $this->getPieChartData( $params );
$params['title_tag'] = ! empty( $params['title_tag'] ) ? $params['title_tag'] : $args['title_tag'];
$params['percent_styles'] = $this->getPercentStyles( $params );
$params['title_styles'] = $this->getTitleStyles( $params );
$params['text_styles'] = $this->getTextStyles( $params );
$html = edgtf_core_get_shortcode_module_template_part( 'templates/pie-chart', 'pie-chart', '', $params );
return $html;
}
private function getHolderClasses( $params ) {
$holderClasses = array();
$holderClasses[] = ! empty( $params['custom_class'] ) ? esc_attr( $params['custom_class'] ) : '';
return implode( ' ', $holderClasses );
}
private function getPieChartData( $params ) {
$data = array();
if ( ! empty( $params['percent'] ) ) {
$data['data-percent'] = $params['percent'];
}
if ( ! empty( $params['size'] ) ) {
$data['data-size'] = $params['size'];
}
if ( ! empty( $params['active_color'] ) ) {
$data['data-bar-color'] = $params['active_color'];
}
if ( ! empty( $params['inactive_color'] ) ) {
$data['data-track-color'] = $params['inactive_color'];
}
else{
$data['data-track-color'] = "rgba(255,255,255,.2)";
}
return $data;
}
private function getPercentStyles( $params ) {
$styles = array();
if ( ! empty( $params['percent_color'] ) ) {
$styles[] = 'color: ' . $params['percent_color'];
}
return implode( ';', $styles );
}
private function getTitleStyles( $params ) {
$styles = array();
if ( ! empty( $params['title_color'] ) ) {
$styles[] = 'color: ' . $params['title_color'];
}
return implode( ';', $styles );
}
private function getTextStyles( $params ) {
$styles = array();
if ( ! empty( $params['text_color'] ) ) {
$styles[] = 'color: ' . $params['text_color'];
}
return implode( ';', $styles );
}
}