Current File : /home/kelaby89/abl.academy/wp-content/themes/eduma/thim-elementor-kit/our-team/our-team.php |
<?php
namespace Elementor;
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class Thim_Ekit_Widget_Our_Team extends Widget_Base {
public function get_name() {
return 'thim-our-team';
}
public function get_title() {
return esc_html__( 'Our Team', 'eduma' );
}
public function get_icon() {
return 'eduma-eicon thim-widget-icon thim-widget-icon-our-team';
}
public function get_categories() {
return [ 'eduma_ekit' ];
}
public function get_base() {
return basename( __FILE__, '.php' );
}
protected function register_controls() {
$this->start_controls_section(
'content',
[
'label' => esc_html__( 'Our Team', 'eduma' )
]
);
$this->add_control(
'layout',
[
'label' => esc_html__( 'Layout', 'eduma' ),
'type' => Controls_Manager::SELECT,
'options' => [
'base' => esc_html__( 'Default', 'eduma' ),
'slider' => esc_html__( 'Slider', 'eduma' )
],
'default' => 'base'
]
);
$this->add_control(
'layout_demo_elegant',
[
'label' => esc_html__( 'Icon Hover', 'eduma' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes'
]
);
$this->add_control(
'cat_id',
[
'label' => esc_html__( 'Select Category', 'eduma' ),
'type' => Controls_Manager::SELECT2,
'options' => thim_get_cat_taxonomy( 'our_team_category', array( 'all' => esc_html__( 'All', 'eduma' ) ) ),
'default' => 'all'
]
);
$this->add_control(
'number_post',
[
'label' => esc_html__( 'Number Posts', 'eduma' ),
'type' => Controls_Manager::NUMBER,
'default' => 5,
'min' => 1,
'step' => 1
]
);
$this->add_control(
'columns',
[
'label' => esc_html__( 'Columns', 'eduma' ),
'type' => Controls_Manager::SELECT,
'label_block' => false,
'options' => [
'1' => esc_html__( '1', 'eduma' ),
'2' => esc_html__( '2', 'eduma' ),
'3' => esc_html__( '3', 'eduma' ),
'4' => esc_html__( '4', 'eduma' )
],
'default' => '4'
]
);
$this->add_control(
'show_pagination',
[
'label' => esc_html__( 'Show Pagination?', 'eduma' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'condition' => array(
'layout' => [ 'slider' ]
)
]
);
$this->add_control(
'link_member',
[
'label' => esc_html__( 'Enable Link To Member?', 'eduma' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
]
);
$this->add_control(
'text_link',
[
'label' => esc_html__( 'CTA Button Text', 'eduma' ),
'type' => Controls_Manager::TEXT,
'placeholder' => esc_html__( 'Add your text here', 'eduma' ),
'label_block' => true
]
);
$this->add_control(
'link',
[
'label' => esc_html__( 'CTA Button Link', 'eduma' ),
'type' => Controls_Manager::URL,
'placeholder' => esc_html__( 'https://your-link.com', 'eduma' ),
'show_external' => false,
'default' => [
'url' => '',
'is_external' => true,
'nofollow' => true,
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'social_options',
[
'label' => esc_html__( 'Social Position', 'eduma' ),
'tab' => Controls_Manager::TAB_STYLE
]
);
$this->add_control(
'social_position',
[
'label' => esc_html__( 'Vertical Orientation', 'eduma' ),
'type' => Controls_Manager::CHOOSE,
'options' => [
'50%' => [
'title' => esc_html__( 'Middle', 'elementor' ),
'icon' => 'eicon-v-align-middle',
],
'45px' => [
'title' => esc_html__( 'Bottom', 'elementor' ),
'icon' => 'eicon-v-align-bottom',
],
],
'default' => '45px',
'toggle' => false,
'label_block' => false,
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .our-team-item .our-team-image .social-team' => 'bottom: {{VALUE}};',
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'title_options',
[
'label' => esc_html__( 'Title', 'eduma' ),
'tab' => Controls_Manager::TAB_STYLE
]
);
$this->add_responsive_control(
'title_margin',
[
'label' => esc_html__( 'Margin', 'eduma' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .content-team .title' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => esc_html__( 'Typography', 'eduma' ),
'selector' => '{{WRAPPER}} .wrapper-lists-our-team .content-team .title'
]
);
$this->add_control(
'text_title_color',
[
'label' => esc_html__( 'Text Color', 'eduma' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .content-team .title a' => 'color: {{VALUE}};'
],
]
);
$this->add_control(
'text_title_hover_color',
[
'label' => esc_html__( 'Text Hover Color', 'eduma' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .content-team .title a:hover' => 'color: {{VALUE}};'
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'regency_options',
[
'label' => esc_html__( 'Regency', 'eduma' ),
'tab' => Controls_Manager::TAB_STYLE
]
);
$this->add_responsive_control(
'regency_margin',
[
'label' => esc_html__( 'Margin', 'eduma' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .content-team .regency' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'regency_typography',
'label' => esc_html__( 'Typography', 'eduma' ),
'selector' => '{{WRAPPER}} .wrapper-lists-our-team .content-team .regency'
]
);
$this->add_control(
'text_regency_color',
[
'label' => esc_html__( 'Text Color', 'eduma' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .content-team .regency' => 'color: {{VALUE}};'
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'button_options',
[
'label' => esc_html__( 'CTA Button', 'eduma' ),
'tab' => Controls_Manager::TAB_STYLE
]
);
$this->add_responsive_control(
'button_margin',
[
'label' => esc_html__( 'Margin', 'eduma' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'text_padding',
[
'label' => esc_html__( 'Padding', 'eduma' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'button_typography',
'label' => esc_html__( 'Typography', 'eduma' ),
'selector' => '{{WRAPPER}} .wrapper-lists-our-team .join-our-team'
]
);
$this->add_responsive_control(
'border_style',
[
'label' => esc_html_x( 'Border Type', 'Border Control', 'eduma' ),
'type' => Controls_Manager::SELECT,
'options' => [
'none' => esc_html__( 'None', 'eduma' ),
'solid' => esc_html_x( 'Solid', 'Border Control', 'eduma' ),
'double' => esc_html_x( 'Double', 'Border Control', 'eduma' ),
'dotted' => esc_html_x( 'Dotted', 'Border Control', 'eduma' ),
'dashed' => esc_html_x( 'Dashed', 'Border Control', 'eduma' ),
'groove' => esc_html_x( 'Groove', 'Border Control', 'eduma' ),
],
'default' => 'none',
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team' => 'border-style: {{VALUE}};',
],
]
);
$this->add_responsive_control(
'border_dimensions',
[
'label' => esc_html_x( 'Width', 'Border Control', 'eduma' ),
'type' => Controls_Manager::DIMENSIONS,
'condition' => [
'border_style!' => 'none'
],
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->start_controls_tabs( 'tabs_read' );
$this->start_controls_tab(
'button_tabnormal',
[
'label' => esc_html__( 'Normal', 'eduma' ),
]
);
$this->add_control(
'text_button_color',
[
'label' => esc_html__( 'Text Color', 'eduma' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team' => 'color: {{VALUE}};'
],
]
);
$this->add_control(
'bg_button_color',
[
'label' => esc_html__( 'Background Color', 'eduma' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team' => 'background-color: {{VALUE}};'
],
]
);
$this->add_control(
'border_button_color',
[
'label' => esc_html__( 'Border Color', 'eduma' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team' => 'border-color: {{VALUE}};',
],
'condition' => [
'border_style!' => 'none'
],
]
);
$this->add_responsive_control(
'border_button_radius',
[
'label' => esc_html__( 'Border Radius', 'eduma' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%' ],
'default' => [
'top' => '',
'right' => '',
'bottom' => '',
'left' => '',
],
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->end_controls_tab();
$this->start_controls_tab(
'tabs_button_hover',
[
'label' => esc_html__( 'Hover', 'eduma' ),
]
);
$this->add_control(
'text_button_hover_color',
[
'label' => esc_html__( 'Text Color', 'eduma' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team:hover' => 'color: {{VALUE}};'
],
]
);
$this->add_control(
'bg_button_hover_color',
[
'label' => esc_html__( 'Background Color', 'eduma' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team:hover' => 'background-color: {{VALUE}};'
],
]
);
$this->add_control(
'border_button_color_hover',
[
'label' => esc_html__( 'Border Color', 'eduma' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team:hover' => 'border-color: {{VALUE}};',
],
'condition' => [
'border_style!' => 'none'
],
]
);
$this->add_responsive_control(
'border_button_radius_hover',
[
'label' => esc_html__( 'Border Radius', 'eduma' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%' ],
'default' => [
'top' => '',
'right' => '',
'bottom' => '',
'left' => '',
],
'selectors' => [
'{{WRAPPER}} .wrapper-lists-our-team .join-our-team:hover' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings_for_display();
$settings['css_animation'] = ''; // fix Undefined for child theme
thim_ekit_get_widget_template( $this->get_base(), array(
'instance' => $settings
), $settings['layout'] );
}
}