File: /home/globfdxw/www/wp-content/plugins/bearsthemes-addons/widgets/donors/skins/skin-saltoro.php
<?php
namespace BearsthemesAddons\Widgets\Donors\Skins;
use Elementor\Widget_Base;
use Elementor\Skin_Base;
use Elementor\Controls_Manager;
use Elementor\Repeater;
use Elementor\Utils;
use Elementor\Group_Control_Image_Size;
use Elementor\Group_Control_Css_Filter;
use Elementor\Group_Control_Typography;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Box_Shadow;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class Skin_Saltoro extends Skin_Base {
protected function _register_controls_actions() {
add_action( 'elementor/element/be-donors/section_layout/before_section_end', [ $this, 'register_layout_section_controls' ] );
add_action( 'elementor/element/be-donors/section_design_layout/after_section_end', [ $this, 'register_design_box_section_controls' ] );
add_action( 'elementor/element/be-donors/section_design_layout/after_section_end', [ $this, 'register_design_image_section_controls' ] );
add_action( 'elementor/element/be-donors/section_design_layout/after_section_end', [ $this, 'register_design_content_section_controls' ] );
}
public function get_id() {
return 'skin-saltoro';
}
public function get_title() {
return __( 'Saltoro', 'bearsthemes-addons' );
}
public function register_layout_section_controls( Widget_Base $widget ) {
$this->parent = $widget;
$repeater = new Repeater();
$repeater->add_control(
'list_image', [
'label' => __( 'Thumbnail', 'bearsthemes-addons' ),
'type' => Controls_Manager::MEDIA,
'default' => [
'url' => Utils::get_placeholder_image_src(),
],
]
);
$repeater->add_control(
'list_title', [
'label' => __( 'Title', 'bearsthemes-addons' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'This is donor name' , 'bearsthemes-addons' ),
'label_block' => true,
]
);
$repeater->add_control(
'list_price', [
'label' => __( 'Price', 'bearsthemes-addons' ),
'type' => Controls_Manager::TEXT,
'default' => '$1,200',
'label_block' => true,
]
);
$repeater->add_control(
'list_url', [
'label' => __( 'Custom Link', 'bearsthemes-addons' ),
'type' => Controls_Manager::TEXT,
'default' => '#',
]
);
$this->add_control(
'list',
[
'label' => __( 'Slides', 'bearsthemes-addons' ),
'type' => Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'default' => [
[
'list_image' => Utils::get_placeholder_image_src(),
'list_title' => __( 'James Jacksin', 'bearsthemes-addons' ),
'list_price' => '$1,200',
'list_url' => '#',
],
[
'list_image' => Utils::get_placeholder_image_src(),
'list_title' => __( 'Qlark Thom', 'bearsthemes-addons' ),
'list_price' => '$1,200',
'list_url' => '#',
],
[
'list_image' => Utils::get_placeholder_image_src(),
'list_title' => __( 'Willim Jackson', 'bearsthemes-addons' ),
'list_price' => '$1,200',
'list_url' => '#',
],
[
'list_image' => Utils::get_placeholder_image_src(),
'list_title' => __( 'Carly Rokki', 'bearsthemes-addons' ),
'list_price' => '$1,200',
'list_url' => '#',
],
[
'list_image' => Utils::get_placeholder_image_src(),
'list_title' => __( 'Ulimes Nom', 'bearsthemes-addons' ),
'list_price' => '$1,200',
'list_url' => '#',
],
[
'list_image' => Utils::get_placeholder_image_src(),
'list_title' => __( 'Ilimes Taylor', 'bearsthemes-addons' ),
'list_price' => '$1,200',
'list_url' => '#',
],
],
'title_field' => '{{{ list_title }}}',
]
);
$this->add_responsive_control(
'columns',
[
'label' => __( 'Columns', 'bearsthemes-addons' ),
'type' => Controls_Manager::SELECT,
'default' => '4',
'tablet_default' => '2',
'mobile_default' => '1',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'5' => '5',
'6' => '6',
],
'prefix_class' => 'elementor-grid%s-',
]
);
$this->add_control(
'show_thumbnail',
[
'label' => __( 'Thumbnail', 'bearsthemes-addons' ),
'type' => Controls_Manager::SWITCHER,
'label_on' => __( 'Show', 'bearsthemes-addons' ),
'label_off' => __( 'Hide', 'bearsthemes-addons' ),
'default' => 'yes',
]
);
$this->add_group_control(
Group_Control_Image_Size::get_type(),
[
'name' => 'thumbnail',
'default' => 'medium',
'exclude' => [ 'custom' ],
'condition' => [
'skin_saltoro_show_thumbnail!'=> '',
],
]
);
$this->add_responsive_control(
'item_ratio',
[
'label' => __( 'Image Ratio', 'bearsthemes-addons' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 1,
],
'range' => [
'px' => [
'min' => 0.3,
'max' => 2,
'step' => 0.01,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-donor__thumbnail' => 'padding-bottom: calc( {{SIZE}} * 100% );',
],
'condition' => [
'show_thumbnail!'=> '',
],
]
);
$this->add_control(
'show_title',
[
'label' => __( 'Title', 'bearsthemes-addons' ),
'type' => Controls_Manager::SWITCHER,
'label_on' => __( 'Show', 'bearsthemes-addons' ),
'label_off' => __( 'Hide', 'bearsthemes-addons' ),
'default' => 'yes',
]
);
$this->add_control(
'show_price',
[
'label' => __( 'Price', 'bearsthemes-addons' ),
'type' => Controls_Manager::SWITCHER,
'label_on' => __( 'Show', 'bearsthemes-addons' ),
'label_off' => __( 'Hide', 'bearsthemes-addons' ),
'default' => 'yes',
]
);
}
public function register_design_box_section_controls( Widget_Base $widget ) {
$this->parent = $widget;
$this->start_controls_section(
'section_design_box',
[
'label' => __( 'Box', 'bearsthemes-addons' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'box_border_width',
[
'label' => __( 'Border Width', 'bearsthemes-addons' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 50,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-donor' => 'border-style: solid; border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}',
],
]
);
$this->add_control(
'box_border_radius',
[
'label' => __( 'Border Radius', 'bearsthemes-addons' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', '%' ],
'range' => [
'px' => [
'min' => 0,
'max' => 200,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-donor' => 'border-radius: {{SIZE}}{{UNIT}}',
],
]
);
$this->add_control(
'box_padding',
[
'label' => __( 'Padding', 'bearsthemes-addons' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 50,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-donor' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}',
],
]
);
$this->add_control(
'content_padding',
[
'label' => __( 'Content Padding', 'bearsthemes-addons' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 50,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-donor__content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}',
],
]
);
$this->start_controls_tabs( 'bg_effects_tabs' );
$this->start_controls_tab( 'classic_style_normal',
[
'label' => __( 'Normal', 'bearsthemes-addons' ),
]
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
[
'name' => 'box_shadow',
'selector' => '{{WRAPPER}} .elementor-donor',
]
);
$this->add_control(
'box_bg_color',
[
'label' => __( 'Background Color', 'bearsthemes-addons' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-donor' => 'background-color: {{VALUE}}',
],
]
);
$this->add_control(
'box_border_color',
[
'label' => __( 'Border Color', 'bearsthemes-addons' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-donor' => 'border-color: {{VALUE}}',
],
]
);
$this->end_controls_tab();
$this->start_controls_tab( 'classic_style_hover',
[
'label' => __( 'Hover', 'bearsthemes-addons' ),
]
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
[
'name' => 'box_shadow_hover',
'selector' => '{{WRAPPER}} .elementor-donor:hover',
]
);
$this->add_control(
'box_bg_color_hover',
[
'label' => __( 'Background Color', 'bearsthemes-addons' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-donor:hover' => 'background-color: {{VALUE}}',
],
]
);
$this->add_control(
'box_border_color_hover',
[
'label' => __( 'Border Color', 'bearsthemes-addons' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-donor:hover' => 'border-color: {{VALUE}}',
],
]
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
}
public function register_design_image_section_controls( Widget_Base $widget ) {
$this->parent = $widget;
$this->start_controls_section(
'section_design_image',
[
'label' => __( 'Image', 'bearsthemes-addons' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => [
'skin_saltoro_show_thumbnail!' => '',
],
]
);
$this->add_control(
'img_border_radius',
[
'label' => __( 'Border Radius', 'bearsthemes-addons' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%' ],
'selectors' => [
'{{WRAPPER}} .elementor-donor__thumbnail' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->start_controls_tabs( 'thumbnail_effects_tabs' );
$this->start_controls_tab( 'normal',
[
'label' => __( 'Normal', 'bearsthemes-addons' ),
]
);
$this->add_group_control(
Group_Control_Css_Filter::get_type(),
[
'name' => 'thumbnail_filters',
'selector' => '{{WRAPPER}} .elementor-donor__thumbnail img',
]
);
$this->end_controls_tab();
$this->start_controls_tab( 'hover',
[
'label' => __( 'Hover', 'bearsthemes-addons' ),
]
);
$this->add_group_control(
Group_Control_Css_Filter::get_type(),
[
'name' => 'thumbnail_hover_filters',
'selector' => '{{WRAPPER}} .elementor-donor__thumbnail:hover .elementor-post__thumbnail img',
]
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->add_control(
'overlay_color',
[
'label' => __( 'Overlay Color', 'bearsthemes-addons' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .elementor-donor__overlay' => 'background-color: {{VALUE}};',
],
'condition' => [
'skin_saltoro_show_thumbnail!' => '',
],
]
);
$this->end_controls_section();
}
public function register_design_content_section_controls( Widget_Base $widget ) {
$this->parent = $widget;
$this->start_controls_section(
'section_design_content',
[
'label' => __( 'Content', 'bearsthemes-addons' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'heading_title_style',
[
'label' => __( 'Title', 'bearsthemes-addons' ),
'type' => Controls_Manager::HEADING,
'condition' => [
'skin_saltoro_show_title!' => '',
],
]
);
$this->add_control(
'title_color',
[
'label' => __( 'Color', 'bearsthemes-addons' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .elementor-donor__title' => 'color: {{VALUE}};',
],
'condition' => [
'skin_saltoro_show_title!' => '',
],
]
);
$this->add_control(
'title_color_hover',
[
'label' => __( 'Color Hover', 'bearsthemes-addons' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .elementor-donor__title:hover,
{{WRAPPER}} .elementor-donor__title a:hover' => 'color: {{VALUE}};',
],
'condition' => [
'skin_saltoro_show_title!' => '',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'default' => '',
'selector' => '{{WRAPPER}} .elementor-donor__title',
'condition' => [
'skin_saltoro_show_title!' => '',
],
]
);
$this->add_control(
'heading_price_style',
[
'label' => __( 'Price', 'bearsthemes-addons' ),
'type' => Controls_Manager::HEADING,
'condition' => [
'skin_saltoro_show_price!' => '',
],
]
);
$this->add_control(
'price_color',
[
'label' => __( 'Color', 'bearsthemes-addons' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .elementor-donor__price' => 'color: {{VALUE}};',
],
'condition' => [
'skin_saltoro_show_price!' => '',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'price_typography',
'default' => '',
'selector' => '{{WRAPPER}} .elementor-donor__price',
'condition' => [
'skin_saltoro_show_price!' => '',
],
]
);
$this->end_controls_section();
}
public function render() {
$settings = $this->parent->get_settings();
if ( empty( $this->parent->get_instance_value_skin('list') ) ) {
return;
}
$this->parent->render_loop_header();
foreach ( $this->parent->get_instance_value_skin('list') as $index => $item ) {
?>
<div class="elementor-donor">
<?php if( '' !== $this->parent->get_instance_value_skin('show_thumbnail') ) { ?>
<div class="elementor-donor__thumbnail">
<div class="elementor-donor__overlay"></div>
<?php
$attachment = wp_get_attachment_image_src( $item['list_image']['id'], $this->parent->get_instance_value_skin('thumbnail_size') );
if( !empty( $attachment ) ) {
echo '<img src=" ' . esc_url( $attachment[0] ) . ' " alt="">';
} else {
echo '<img src=" ' . esc_url( $item['list_image']['url'] ) . ' " alt="">';
}
if( !empty( $item['list_price'] ) && '' !== $this->parent->get_instance_value_skin('show_price') ) {
echo '<div class="elementor-donor__price"><span>' . esc_html__( 'Donated: ', 'bearsthemes-addons' ) . '</span> ' . $item['list_price'] . '</div>';
}
?>
</div>
<?php } ?>
<div class="elementor-donor__content">
<?php
if( !empty( $item['list_title'] ) && '' !== $this->parent->get_instance_value_skin('show_title') ) {
if( !empty( $item['list_url'] ) ) {
echo '<h3 class="elementor-donor__title"><a href="' . esc_url( $item['list_url'] ) . '">' . $item['list_title'] . '</a></h3>';
} else {
echo '<h3 class="elementor-donor__title">' . $item['list_title'] . '</h3>';
}
}
?>
</div>
</div>
<?php
}
$this->parent->render_loop_footer();
}
protected function content_template() {
}
}