File "bar-chart.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/happy-elementor-addons/wpml/bar-chart.php
File
size: 792 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
/**
* Bar Chart integration
*/
namespace Happy_Addons\Elementor;
defined( 'ABSPATH' ) || die();
class WPML_Bar_Chart extends \WPML_Elementor_Module_With_Items {
/**
* @return string
*/
public function get_items_field() {
return 'chart_data';
}
/**
* @return array
*/
public function get_fields() {
return ['label'];
}
/**
* @param string $field
*
* @return string
*/
protected function get_title( $field ) {
switch ( $field ) {
case 'label':
return __( 'Bar Chart: Label Text', 'happy-elementor-addons' );
default:
return '';
}
}
/**
* @param string $field
*
* @return string
*/
protected function get_editor_type( $field ) {
switch ( $field ) {
case 'label':
return 'LINE';
default:
return '';
}
}
}