<?php
/**
* Class: Jet_Elements_Brands
* Name: Logo Showcase
* Slug: jet-brands
*/
namespace Elementor;
use Elementor\Controls_Manager;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Box_Shadow;
use Elementor\Group_Control_Typography;
use Elementor\Repeater;
use Elementor\Scheme_Color;
use Elementor\Scheme_Typography;
use Elementor\Widget_Base;
use Elementor\Utils;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class Jet_Elements_Brands extends Jet_Elements_Base {
public function get_name() {
return 'jet-brands';
}
public function get_title() {
return esc_html__( 'Logo Showcase', 'jet-elements' );
}
public function get_icon() {
return 'jet-elements-icon-brands';
}
public function get_keywords() {
return array( 'brands' );
}
public function get_jet_help_url() {
return 'https://crocoblock.com/knowledge-base/articles/how-to-showcase-brands-in-most-stylish-ways-with-jetelements-brands-widget/';
}
public function get_categories() {
return array( 'cherry' );
}
protected function _register_controls() {
$this->start_controls_section(
'section_brands',
array(
'label' => esc_html__( 'Brands', 'jet-elements' ),
)
);
$repeater = new Repeater();
$repeater->add_control(
'item_image',
array(
'label' => esc_html__( 'Company Logo', 'jet-elements' ),
'type' => Controls_Manager::MEDIA,
'default' => array(
'url' => Utils::get_placeholder_image_src(),
),
'dynamic' => array( 'active' => true ),
)
);
$repeater->add_control(
'item_name',
array(
'label' => esc_html__( 'Company Name', 'jet-elements' ),
'type' => Controls_Manager::TEXT,
'dynamic' => array( 'active' => true ),
)
);
$repeater->add_control(
'item_desc',
array(
'label' => esc_html__( 'Company Description', 'jet-elements' ),
'type' => Controls_Manager::TEXTAREA,
'dynamic' => array( 'active' => true ),
)
);
$repeater->add_control(
'item_url',
array(
'label' => esc_html__( 'Company URL', 'jet-elements' ),
'type' => Controls_Manager::URL,
'default' => array(
'url' => '#',
),
'dynamic' => array( 'active' => true ),
)
);
$this->add_control(
'brands_list',
array(
'type' => Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'default' => array(
array(
'item_image' => array(
'url' => Utils::get_placeholder_image_src(),
),
'item_name' => esc_html__( 'Company #1', 'jet-elements' ),
'item_url' => array(
'url' => '#',
),
),
array(
'item_image' => array(
'url' => Utils::get_placeholder_image_src(),
),
'item_name' => esc_html__( 'Company #2', 'jet-elements' ),
'item_url' => array(
'url' => '#',
),
),
),
'title_field' => '{{{ item_name }}}',
)
);
$this->end_controls_section();
$this->start_controls_section(
'section_general',
array(
'label' => esc_html__( 'Settings', 'jet-elements' ),
)
);
$this->add_responsive_control(
'columns',
array(
'label' => esc_html__( 'Columns', 'jet-elements' ),
'type' => Controls_Manager::SELECT,
'default' => 4,
'options' => jet_elements_tools()->get_select_range( 6 ),
)
);
$this->end_controls_section();
$css_scheme = apply_filters(
'jet-elements/brands/css-scheme',
array(
'list' => '.brands-list',
'logo' => '.brands-list .brands-list__item-img',
'logo_wrap' => '.brands-list .brands-list__item-img-wrap',
'name' => '.brands-list .brands-list__item-name',
'desc' => '.brands-list .brands-list__item-desc',
)
);
$this->_start_controls_section(
'section_brand_item_style',
array(
'label' => esc_html__( 'Company Item', 'jet-elements' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
),
100
);
$this->_add_responsive_control(
'vertical_brands_alignment',
array(
'label' => esc_html__( 'Vertical Alignment', 'jet-elements' ),
'type' => Controls_Manager::CHOOSE,
'options' => array(
'flex-start' => array(
'title' => esc_html__( 'Top', 'jet-elements' ),
'icon' => 'eicon-v-align-top',
),
'center' => array(
'title' => esc_html__( 'Middle', 'jet-elements' ),
'icon' => 'eicon-v-align-middle',
),
'flex-end' => array(
'title' => esc_html__( 'Bottom', 'jet-elements' ),
'icon' => 'eicon-v-align-bottom',
),
),
'selectors' => array(
'{{WRAPPER}} ' . $css_scheme['list'] => 'align-items: {{VALUE}}',
),
),
100
);
$this->_end_controls_section(100);
$this->_start_controls_section(
'section_brand_logo_style',
array(
'label' => esc_html__( 'Company Logo', 'jet-elements' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->_add_responsive_control(
'logo_alignment',
array(
'label' => esc_html__( 'Alignment', 'jet-elements' ),
'type' => Controls_Manager::CHOOSE,
'default' => 'left',
'options' => array(
'left' => array(
'title' => esc_html__( 'Left', 'jet-elements' ),
'icon' => 'eicon-h-align-left',
),
'center' => array(
'title' => esc_html__( 'Center', 'jet-elements' ),
'icon' => 'eicon-h-align-center',
),
'right' => array(
'title' => esc_html__( 'Right', 'jet-elements' ),
'icon' => 'eicon-h-align-right',
),
),
'selectors' => array(
'{{WRAPPER}} ' . $css_scheme['logo_wrap'] => 'text-align: {{VALUE}};',
),
)
);
$this->_add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'logo_border',
'label' => esc_html__( 'Border', 'jet-elements' ),
'placeholder' => '1px',
'default' => '1px',
'selector' => '{{WRAPPER}} ' . $css_scheme['logo'],
)
);
$this->_add_responsive_control(
'logo_border_radius',
array(
'label' => esc_html__( 'Border Radius', 'jet-elements' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%' ),
'selectors' => array(
'{{WRAPPER}} ' . $css_scheme['logo'] => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->_add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'logo_box_shadow',
'selector' => '{{WRAPPER}} ' . $css_scheme['logo'],
),
100
);
$this->_add_control(
'logo_wrap_style',
array(
'label' => esc_html__( 'Logo Wrapper', 'jet-elements' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
),
25
);
$this->_add_group_control(
Group_Control_Background::get_type(),
array(
'name' => 'logo_wrap_bg',
'selector' => '{{WRAPPER}} ' . $css_scheme['logo_wrap'],
),
25
);
$this->_add_responsive_control(
'logo_wrap_padding',
array(
'label' => esc_html__( 'Padding', 'jet-elements' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} ' . $css_scheme['logo_wrap'] => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
),
50
);
$this->_add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'logo_wrap_border',
'label' => esc_html__( 'Border', 'jet-elements' ),
'placeholder' => '1px',
'default' => '1px',
'selector' => '{{WRAPPER}} ' . $css_scheme['logo_wrap'],
),
50
);
$this->_add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'logo_wrap_shadow',
'selector' => '{{WRAPPER}} ' . $css_scheme['logo_wrap'],
),
100
);
$this->_end_controls_section();
$this->_start_controls_section(
'section_brand_title_style',
array(
'label' => esc_html__( 'Company Name', 'jet-elements' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->_add_responsive_control(
'title_alignment',
array(
'label' => esc_html__( 'Alignment', 'jet-elements' ),
'type' => Controls_Manager::CHOOSE,
'options' => array(
'left' => array(
'title' => esc_html__( 'Left', 'jet-elements' ),
'icon' => 'eicon-text-align-left',
),
'center' => array(
'title' => esc_html__( 'Center', 'jet-elements' ),
'icon' => 'eicon-text-align-center',
),
'right' => array(
Loading ...