Current File : /home/kelaby89/www/wp/wp-content/plugins/trx_addons/components/cpt/courses/courses-sc-elementor.php |
<?php
/**
* ThemeREX Addons Custom post type: Courses (Elementor support)
*
* @package ThemeREX Addons
* @since v1.2
*/
// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
exit;
}
// Elementor Widget
//------------------------------------------------------
if (!function_exists('trx_addons_sc_courses_add_in_elementor')) {
add_action( trx_addons_elementor_get_action_for_widgets_registration(), 'trx_addons_sc_courses_add_in_elementor' );
function trx_addons_sc_courses_add_in_elementor() {
if (!class_exists('TRX_Addons_Elementor_Widget')) return;
class TRX_Addons_Elementor_Widget_Courses extends TRX_Addons_Elementor_Widget {
/**
* Retrieve widget name.
*
* @since 1.6.41
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'trx_sc_courses';
}
/**
* Retrieve widget title.
*
* @since 1.6.41
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Courses', '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 [ 'course', 'learn' ];
}
/**
* Retrieve widget icon.
*
* @since 1.6.41
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-integration 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_courses',
[
'label' => __( 'Courses', '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('cpt', 'courses', 'sc'), 'trx_sc_courses'),
'default' => 'default'
]
);
$this->add_control(
'past',
[
'label' => __( 'Past courses', 'trx_addons' ),
'label_block' => false,
'description' => wp_kses_data( __("Show the past courses if checked, otherwise - show upcoming courses.", 'trx_addons') ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'label_off' => __( 'Off', 'trx_addons' ),
'label_on' => __( 'On', 'trx_addons' ),
'return_value' => '1'
]
);
$this->add_control(
'no_margin',
[
'label' => __( 'Remove margin', 'trx_addons' ),
'label_block' => false,
'type' => \Elementor\Controls_Manager::SWITCHER,
'label_off' => __( 'Off', 'trx_addons' ),
'label_on' => __( 'On', 'trx_addons' ),
'return_value' => '1'
]
);
$this->add_control(
'more_text',
[
'label' => __( "'More' text", 'trx_addons' ),
'label_block' => false,
'type' => \Elementor\Controls_Manager::TEXT,
'default' => esc_html__('More info', 'trx_addons'),
]
);
$this->add_control(
'pagination',
[
'label' => __( 'Pagination', 'trx_addons' ),
'label_block' => false,
'description' => wp_kses_data( __("Add pagination links after posts. Attention! Pagination is not allowed if the slider layout is used.", 'trx_addons') ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => ! $is_edit_mode ? array() : trx_addons_get_list_sc_paginations(),
'default' => 'none'
]
);
$this->add_control(
'post_type',
[
'type' => \Elementor\Controls_Manager::HIDDEN,
'render_type' => 'none',
'default' => TRX_ADDONS_CPT_COURSES_PT
]
);
$this->add_control(
'taxonomy',
[
'type' => \Elementor\Controls_Manager::HIDDEN,
'render_type' => 'none',
'default' => TRX_ADDONS_CPT_COURSES_TAXONOMY
]
);
$this->add_control(
'cat',
[
'label' => __( 'Group', 'trx_addons' ),
'label_block' => false,
'type' => \Elementor\Controls_Manager::SELECT,
'options' => ! $is_edit_mode ? array() : trx_addons_array_merge( array( 0 => trx_addons_get_not_selected_text( esc_html__( 'Select category', 'trx_addons' ) ) ), trx_addons_get_list_terms( false, TRX_ADDONS_CPT_COURSES_TAXONOMY ) ),
'default' => '0'
]
);
$this->add_query_param('', array(), TRX_ADDONS_CPT_COURSES_PT);
$this->end_controls_section();
$this->add_slider_param();
if ( apply_filters( 'trx_addons_filter_add_title_param', true, $this->get_name() ) ) {
$this->add_title_param();
}
}
}
// Register widget
trx_addons_elm_register_widget( 'TRX_Addons_Elementor_Widget_Courses' );
}
}