is_edit_mode_load()) { $this->enqueue_styles_scripts(); } parent::__construct($data, $args); } /** * Retrieve the list of categories the widget belongs to. * * Used to determine where to display the widget in the editor. * * Note that currently Elementor supports only one category. * When multiple categories passed, Elementor uses the first one. * * @since 1.1.0 * * @access public * * @return array Widget categories. */ public function get_categories() { return [ 'wdk-elementor-listing-preview' ]; } /** * Retrieve the widget name. * * @since 1.1.0 * * @access public * * @return string Widget name. */ public function get_name() { return 'wdk-listing-agent-avatar'; } /** * Retrieve the widget title. * * @since 1.1.0 * * @access public * * @return string Widget title. */ public function get_title() { return esc_html__('Wdk Listing Agent Avatar', 'wpdirectorykit'); } /** * Retrieve the widget icon. * * @since 1.1.0 * * @access public * * @return string Widget icon. */ public function get_icon() { return 'eicon-image-rollover'; } /** * Register the widget controls. * * Adds different input fields to allow the user to change and customize the widget settings. * * @since 1.1.0 * * @access protected */ protected function register_controls() { $this->generate_controls_conf(); $this->generate_controls_layout(); $this->generate_controls_styles(); $this->generate_controls_content(); $this->insert_pro_message('1'); parent::register_controls(); } /** * Render the widget output on the frontend. * * Written in PHP and used to generate the final HTML. * * @since 1.1.0 * * @access protected */ protected function render() { parent::render(); global $wdk_listing_id; $this->data['id_element'] = $this->get_id(); $this->data['settings'] = $this->get_settings(); $this->data['user_avatar_url'] = ''; $this->data['userdata'] = array(); $this->data['user_id'] = ''; if(!Plugin::$instance->editor->is_edit_mode()){ $this->WMVC->model('listing_m'); if($this->data['settings']['index_user'] == 0) { $listing = $this->WMVC->listing_m->get($wdk_listing_id, TRUE); if($listing && wmvc_show_data('user_id_editor', $listing)) { $userdata = get_userdata(wmvc_show_data('user_id_editor', $listing)); if($userdata) { $this->data['user_id'] = wmvc_show_data('user_id_editor', $listing); $this->data['userdata'] = $userdata; $this->data['user_avatar_url'] = get_avatar_url($this->data['user_id']); } } } else { $this->WMVC->model('listingusers_m'); $this->WMVC->db->limit(1); $this->WMVC->db->offset($this->data['settings']['index_user']-1); $listing_alt_agents = $this->WMVC->listingusers_m->get($wdk_listing_id); if(!empty($listing_alt_agents)) { $listing_alt_agents = current($listing_alt_agents); $userdata = get_userdata(wmvc_show_data('user_id', $listing_alt_agents)); if($userdata) { $this->data['user_id'] = wmvc_show_data('user_id', $listing_alt_agents); $this->data['userdata'] = $userdata; $this->data['user_avatar_url'] = get_avatar_url($this->data['user_id']); } } } } $this->data['is_edit_mode']= false; if(Plugin::$instance->editor->is_edit_mode()){ $this->data['is_edit_mode']= true; $this->data['user_avatar_url'] = wdk_placeholder_image_src(); } else { /* return false if no content */ if(empty($this->data['user_avatar_url'])) return false; } echo $this->view('wdk-listing-agent-avatar', $this->data); } private function generate_controls_conf() { $this->start_controls_section( 'tab_conf_main_section', [ 'label' => esc_html__('Main', 'wpdirectorykit'), 'tab' => '1', ] ); $this->add_control( 'index_user', [ 'label' => __( 'Agent Index', 'wpdirectorykit' ), 'description' => __( 'Agent id, where 0 is user edit, then 1,2,3,4 ... is alternative agent by index', 'wpdirectorykit' ), 'type' => \Elementor\Controls_Manager::NUMBER, 'default' => 0, 'min' => 0, 'max' => 100, 'step' => 1, ] ); $this->add_responsive_control ( 'avatar_max_heigth', [ 'label' => esc_html__('Max Height', 'wpdirectorykit'), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 10, 'max' => 1500, ], 'vw' => [ 'min' => 0, 'max' => 100, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'size_units' => [ 'px', 'vw','%' ], 'selectors' => [ '{{WRAPPER}} .wdk-listing-agent-avatar .wdk-avatar' => 'max-height: {{SIZE}}{{UNIT}}', ], ] ); $this->add_responsive_control ( 'avatar_max_width', [ 'label' => esc_html__('Max Width', 'wpdirectorykit'), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 10, 'max' => 1500, ], 'vw' => [ 'min' => 0, 'max' => 100, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'size_units' => [ 'px', 'vw','%' ], 'default' => [ 'size' => 100, 'unit' => '%', ], 'selectors' => [ '{{WRAPPER}} .wdk-listing-agent-avatar .wdk-avatar' => 'max-width: {{SIZE}}{{UNIT}}', ], ] ); $this->add_responsive_control ( 'avatar_heigth', [ 'label' => esc_html__('Height', 'wpdirectorykit'), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 10, 'max' => 1500, ], 'vw' => [ 'min' => 0, 'max' => 100, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'size_units' => [ 'px', 'vw','%' ], 'selectors' => [ '{{WRAPPER}} .wdk-listing-agent-avatar .wdk-avatar' => 'height: {{SIZE}}{{UNIT}}', ], ] ); $this->add_responsive_control ( 'avatar_width', [ 'label' => esc_html__('Width', 'wpdirectorykit'), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 10, 'max' => 1500, ], 'vw' => [ 'min' => 0, 'max' => 100, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'size_units' => [ 'px', 'vw','%' ], 'selectors' => [ '{{WRAPPER}} .wdk-listing-agent-avatar .wdk-avatar' => 'width: {{SIZE}}{{UNIT}}', ], ] ); $this->end_controls_section(); } private function generate_controls_layout() { } private function generate_controls_styles() { $items = [ [ 'key'=>'field_value', 'label'=> esc_html__('Field Label', 'wpdirectorykit'), 'selector'=>'.wdk-listing-agent-avatar', 'options'=>'full', ] ]; foreach ($items as $item) { $this->start_controls_section( $item['key'].'_section', [ 'label' => $item['label'], 'tab' => 'tab_layout' ] ); $selectors = array( 'normal' => '{{WRAPPER}} '.$item['selector'], 'hover'=>'{{WRAPPER}} '.$item['selector'].'%1$s' ); $this->generate_renders_tabs($selectors, $item['key'].'_dynamic', $item['options']); $this->end_controls_section(); /* END special for some elements */ } } private function generate_controls_content() { } public function enqueue_styles_scripts() { } }