File manager - Edit - /home/verseaumee/lauvia/wp-content/plugins/trx_addons/components/reviews/rating_posts/rating_posts-sc-elementor.php
Back
<?php /** * Widget: Posts by Rating (Elementor support) * * @package ThemeREX Addons * @since v1.0 */ // Don't load directly if ( ! defined( 'TRX_ADDONS_VERSION' ) ) { exit; } // Elementor Widget //------------------------------------------------------ if (!function_exists('trx_addons_sc_widget_rating_posts_add_in_elementor')) { add_action( trx_addons_elementor_get_action_for_widgets_registration(), 'trx_addons_sc_widget_rating_posts_add_in_elementor' ); function trx_addons_sc_widget_rating_posts_add_in_elementor() { if (!class_exists('TRX_Addons_Elementor_Widget')) return; class TRX_Addons_Elementor_Widget_Rating_Posts 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([ 'number' => 'size' ]); } /** * Retrieve widget name. * * @since 1.6.41 * @access public * * @return string Widget name. */ public function get_name() { return 'trx_widget_rating_posts'; } /** * Retrieve widget title. * * @since 1.6.41 * @access public * * @return string Widget title. */ public function get_title() { return __( 'Posts by Rating', '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 [ 'posts', 'rating', 'list' ]; } /** * Retrieve widget icon. * * @since 1.6.41 * @access public * * @return string Widget icon. */ public function get_icon() { return 'eicon-post-list 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_rating_posts', [ 'label' => __( 'Post by rating', 'trx_addons' ), ] ); $this->add_control( 'title', [ 'label' => __( 'Title', 'trx_addons' ), 'label_block' => false, 'type' => \Elementor\Controls_Manager::TEXT, 'placeholder' => __( "Widget title", 'trx_addons' ), 'default' => '' ] ); $this->add_control( 'number', [ 'label' => __( 'Number posts to show', 'trx_addons' ), 'type' => \Elementor\Controls_Manager::SLIDER, 'default' => [ 'size' => 4, ], 'range' => [ 'px' => [ 'min' => 1, 'max' => 12 ] ] ] ); $this->add_control( 'mark_type', [ 'label' => __( 'Whose marks to use?', 'trx_addons' ), 'label_block' => false, 'type' => \Elementor\Controls_Manager::SELECT, 'options' => trx_addons_reviews_mark_type_list(), 'default' => 'post' ] ); $this->add_control( 'post_type', [ 'label' => __( 'Post type', 'trx_addons' ), 'label_block' => false, 'type' => \Elementor\Controls_Manager::SELECT, 'options' => ! $is_edit_mode ? array() : trx_addons_get_list_reviews_posts_types(), 'default' => 'post' ] ); $this->add_control( 'details', [ 'label' => __( 'Details', 'elementor' ), 'type' => \Elementor\Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_control( 'show_image', [ 'label' => __( "Show post's image", 'trx_addons' ), 'label_block' => false, 'type' => \Elementor\Controls_Manager::SWITCHER, 'label_off' => __( 'Hide', 'trx_addons' ), 'label_on' => __( 'Show', 'trx_addons' ), 'default' => '1', 'return_value' => '1' ] ); $this->add_control( 'show_author', [ 'label' => __( "Show post's author", 'trx_addons' ), 'label_block' => false, 'type' => \Elementor\Controls_Manager::SWITCHER, 'label_off' => __( 'Hide', 'trx_addons' ), 'label_on' => __( 'Show', 'trx_addons' ), 'default' => '1', 'return_value' => '1' ] ); $this->add_control( 'show_date', [ 'label' => __( "Show post's date", 'trx_addons' ), 'label_block' => false, 'type' => \Elementor\Controls_Manager::SWITCHER, 'label_off' => __( 'Hide', 'trx_addons' ), 'label_on' => __( 'Show', 'trx_addons' ), 'default' => '1', 'return_value' => '1' ] ); $this->add_control( 'show_counters', [ 'label' => __( "Show post's counters", 'trx_addons' ), 'label_block' => false, 'type' => \Elementor\Controls_Manager::SWITCHER, 'label_off' => __( 'Hide', 'trx_addons' ), 'label_on' => __( 'Show', 'trx_addons' ), 'default' => '1', 'return_value' => '1' ] ); $this->add_control( 'show_categories', [ 'label' => __( "Show post's categories", 'trx_addons' ), 'label_block' => false, 'type' => \Elementor\Controls_Manager::SWITCHER, 'label_off' => __( 'Hide', 'trx_addons' ), 'label_on' => __( 'Show', 'trx_addons' ), 'default' => '1', 'return_value' => '1' ] ); $this->end_controls_section(); } } // Register widget trx_addons_elm_register_widget( 'TRX_Addons_Elementor_Widget_Rating_Posts' ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings