start_controls_section( 'content_section', [ 'label' => __( 'Bathrooms', 'propertyhive' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'icon', [ 'label' => __( 'Icon', 'propertyhive' ), 'type' => \Elementor\Controls_Manager::ICONS, 'default' => [ 'value' => 'fas fa-bath', 'library' => 'solid', ], ] ); $this->add_control( 'before', [ 'label' => __( 'Before', 'propertyhive' ), 'type' => \Elementor\Controls_Manager::TEXT, ] ); $this->add_control( 'after', [ 'label' => __( 'After', 'propertyhive' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => __( 'Bathrooms', 'propertyhive' ), ] ); $this->add_control( 'text_align', [ 'label' => __( 'Alignment', 'propertyhive' ), 'type' => \Elementor\Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => __( 'Left', 'propertyhive' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => __( 'Center', 'propertyhive' ), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => __( 'Right', 'propertyhive' ), 'icon' => 'eicon-text-align-right', ], ], 'default' => 'left', 'toggle' => true, 'selectors' => [ '{{WRAPPER}} .elementor-widget-bathrooms' => 'text-align: {{VALUE}}', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'style_section', [ 'label' => __( 'Bathrooms', 'propertyhive' ), 'tab' => \Elementor\Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( \Elementor\Group_Control_Typography::get_type(), [ 'name' => 'typography', 'label' => __( 'Typography', 'propertyhive' ), 'global' => [ 'default' => \Elementor\Core\Kits\Documents\Tabs\Global_Typography::TYPOGRAPHY_PRIMARY, ], 'selector' => '{{WRAPPER}} .elementor-widget-bathrooms', ] ); $this->add_control( 'color', [ 'label' => __( 'Colour', 'propertyhive' ), 'type' => \Elementor\Controls_Manager::COLOR, 'global' => [ 'default' => \Elementor\Core\Kits\Documents\Tabs\Global_Colors::COLOR_PRIMARY, ], 'selectors' => [ '{{WRAPPER}} .elementor-widget-bathrooms' => 'color: {{VALUE}}', ], ] ); $this->add_control( 'icon_color', [ 'label' => __( 'Icon Colour', 'propertyhive' ), 'type' => \Elementor\Controls_Manager::COLOR, 'global' => [ 'default' => \Elementor\Core\Kits\Documents\Tabs\Global_Colors::COLOR_PRIMARY, ], 'selectors' => [ '{{WRAPPER}} .elementor-widget-bathrooms i' => 'color: {{VALUE}}', ], ] ); $this->end_controls_section(); } protected function render() { global $property; $settings = $this->get_settings_for_display(); if ( !isset($property->id) ) { return; } if ( $property->bathrooms != '' && $property->bathrooms != 0 ) { echo '
'; if ( isset($settings['icon']) && !empty($settings['icon']) ) { \Elementor\Icons_Manager::render_icon( $settings['icon'], [ 'aria-hidden' => 'true' ] ); echo ' '; } if ( isset($settings['before']) && !empty($settings['before']) ) { echo $settings['before'] . ' '; } echo esc_html($property->bathrooms); if ( isset($settings['after']) && !empty($settings['after']) ) { echo ' ' . $settings['after']; } echo '
'; } } }