Current File : /home/mdkeenpw/www/wp-content/plugins/trx_addons/components/shortcodes/table/table-sc-elementor.php |
<?php
/**
* Shortcode: Table (Elementor support)
*
* @package ThemeREX Addons
* @since v1.3
*/
// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
exit;
}
// Elementor Widget
//------------------------------------------------------
if (!function_exists('trx_addons_sc_table_add_in_elementor')) {
add_action( trx_addons_elementor_get_action_for_widgets_registration(), 'trx_addons_sc_table_add_in_elementor' );
function trx_addons_sc_table_add_in_elementor() {
if (!class_exists('TRX_Addons_Elementor_Widget')) return;
class TRX_Addons_Elementor_Widget_Table extends TRX_Addons_Elementor_Widget {
/**
* Widget base constructor.
*
* Initializing the widget base class.
*
* @since 1.6.41
* @access public
*
* @param array $data Widget data. Default is an empty array.
* @param array|null $args Optional. Widget default arguments. Default is null.
*/
public function __construct( $data = [], $args = null ) {
parent::__construct( $data, $args );
$this->add_plain_params([
'width' => 'size+unit'
]);
}
/**
* Retrieve widget name.
*
* @since 1.6.41
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'trx_sc_table';
}
/**
* Retrieve widget title.
*
* @since 1.6.41
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Table', 'trx_addons' );
}
/**
* Get widget keywords.
*
* Retrieve the list of keywords the widget belongs to.
*
* @since 2.27.2
* @access public
*
* @return array Widget keywords.
*/
public function get_keywords() {
return [ 'table', 'html' ];
}
/**
* Retrieve widget icon.
*
* @since 1.6.41
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-table trx_addons_elementor_widget_icon';
}
/**
* Retrieve the list of categories the widget belongs to.
*
* Used to determine where to display the widget in the editor.
*
* @since 1.6.41
* @access public
*
* @return array Widget categories.
*/
public function get_categories() {
return ['trx_addons-elements'];
}
/**
* Register widget controls.
*
* Adds different input fields to allow the user to change and customize the widget settings.
*
* @since 1.6.41
* @access protected
*/
protected function register_controls() {
// Detect edit mode
$is_edit_mode = trx_addons_elm_is_edit_mode();
// Register controls
$this->start_controls_section(
'section_sc_table',
[
'label' => __( 'Table', 'trx_addons' ),
]
);
$this->add_control(
'type',
[
'label' => __( 'Layout', 'trx_addons' ),
'label_block' => false,
'type' => \Elementor\Controls_Manager::SELECT,
'options' => apply_filters('trx_addons_sc_type', trx_addons_components_get_allowed_layouts('sc', 'table'), 'trx_sc_table'),
'default' => 'default',
]
);
$this->add_control(
'align',
[
'label' => __( 'Alignment', 'trx_addons' ),
'label_block' => false,
'type' => \Elementor\Controls_Manager::SELECT,
'options' => ! $is_edit_mode ? array() : trx_addons_get_list_sc_aligns(),
'default' => 'none',
]
);
$this->add_control(
'width',
[
'label' => __( 'Width', 'trx_addons' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'default' => [
'size' => 100,
'unit' => '%'
],
'size_units' => [ '%', 'px' ],
'range' => [
'%' => [
'min' => 0,
'max' => 100
],
'px' => [
'min' => 0,
'max' => 1170
]
],
'selectors' => [
'{{WRAPPER}} .sc_table' => 'width:{{SIZE}}{{UNIT}};',
]
]
);
$descr = __("Replace this text with content, created with any table-generator, for example: http://www.impressivewebs.com/html-table-code-generator/ or http://html-tables.com/", 'trx_addons')
. '<br>'
. __("<b>Attention!</b> To save html tags please paste generated code in the tab 'Text' (not in the tab 'Visual')!", 'trx_addons');
$this->add_control(
'content',
[
'label' => __( 'Content', 'trx_addons' ),
'label_block' => true,
'description' => wp_kses_data( $descr ),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'default' => $descr
]
);
$this->end_controls_section();
if ( apply_filters( 'trx_addons_filter_add_title_param', true, $this->get_name() ) ) {
$this->add_title_param();
}
}
/**
* Render widget's template for the editor.
*
* Written as a Backbone JavaScript template and used to generate the live preview.
*
* @since 1.6.41
* @access protected
*/
protected function content_template() {
trx_addons_get_template_part(TRX_ADDONS_PLUGIN_SHORTCODES . "table/tpe.table.php",
'trx_addons_args_sc_table',
array('element' => $this)
);
}
}
// Register widget
trx_addons_elm_register_widget( 'TRX_Addons_Elementor_Widget_Table' );
}
}