You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
426 lines
11 KiB
426 lines
11 KiB
7 years ago
|
<?php
|
||
|
namespace Elementor;
|
||
|
|
||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
exit; // Exit if accessed directly.
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Elementor tabs widget.
|
||
|
*
|
||
|
* Elementor widget that displays vertical or horizontal tabs with different
|
||
|
* pieces of content.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
class Widget_Tabs extends Widget_Base {
|
||
|
|
||
|
/**
|
||
|
* Get widget name.
|
||
|
*
|
||
|
* Retrieve tabs widget name.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @access public
|
||
|
*
|
||
|
* @return string Widget name.
|
||
|
*/
|
||
|
public function get_name() {
|
||
|
return 'tabs';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get widget title.
|
||
|
*
|
||
|
* Retrieve tabs widget title.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @access public
|
||
|
*
|
||
|
* @return string Widget title.
|
||
|
*/
|
||
|
public function get_title() {
|
||
|
return __( 'Tabs', 'elementor' );
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get widget icon.
|
||
|
*
|
||
|
* Retrieve tabs widget icon.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @access public
|
||
|
*
|
||
|
* @return string Widget icon.
|
||
|
*/
|
||
|
public function get_icon() {
|
||
|
return 'eicon-tabs';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get widget categories.
|
||
|
*
|
||
|
* Retrieve the list of categories the tabs widget belongs to.
|
||
|
*
|
||
|
* Used to determine where to display the widget in the editor.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @access public
|
||
|
*
|
||
|
* @return array Widget categories.
|
||
|
*/
|
||
|
public function get_categories() {
|
||
|
return [ 'general-elements' ];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Register tabs widget controls.
|
||
|
*
|
||
|
* Adds different input fields to allow the user to change and customize the widget settings.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @access protected
|
||
|
*/
|
||
|
protected function _register_controls() {
|
||
|
$this->start_controls_section(
|
||
|
'section_tabs',
|
||
|
[
|
||
|
'label' => __( 'Tabs', 'elementor' ),
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'tabs',
|
||
|
[
|
||
|
'label' => __( 'Tabs Items', 'elementor' ),
|
||
|
'type' => Controls_Manager::REPEATER,
|
||
|
'default' => [
|
||
|
[
|
||
|
'tab_title' => __( 'Tab #1', 'elementor' ),
|
||
|
'tab_content' => __( 'I am tab content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.', 'elementor' ),
|
||
|
],
|
||
|
[
|
||
|
'tab_title' => __( 'Tab #2', 'elementor' ),
|
||
|
'tab_content' => __( 'I am tab content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.', 'elementor' ),
|
||
|
],
|
||
|
],
|
||
|
'fields' => [
|
||
|
[
|
||
|
'name' => 'tab_title',
|
||
|
'label' => __( 'Title & Content', 'elementor' ),
|
||
|
'type' => Controls_Manager::TEXT,
|
||
|
'default' => __( 'Tab Title', 'elementor' ),
|
||
|
'placeholder' => __( 'Tab Title', 'elementor' ),
|
||
|
'label_block' => true,
|
||
|
],
|
||
|
[
|
||
|
'name' => 'tab_content',
|
||
|
'label' => __( 'Content', 'elementor' ),
|
||
|
'default' => __( 'Tab Content', 'elementor' ),
|
||
|
'placeholder' => __( 'Tab Content', 'elementor' ),
|
||
|
'type' => Controls_Manager::WYSIWYG,
|
||
|
'show_label' => false,
|
||
|
],
|
||
|
],
|
||
|
'title_field' => '{{{ tab_title }}}',
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'view',
|
||
|
[
|
||
|
'label' => __( 'View', 'elementor' ),
|
||
|
'type' => Controls_Manager::HIDDEN,
|
||
|
'default' => 'traditional',
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'type',
|
||
|
[
|
||
|
'label' => __( 'Type', 'elementor' ),
|
||
|
'type' => Controls_Manager::SELECT,
|
||
|
'default' => 'horizontal',
|
||
|
'options' => [
|
||
|
'horizontal' => __( 'Horizontal', 'elementor' ),
|
||
|
'vertical' => __( 'Vertical', 'elementor' ),
|
||
|
],
|
||
|
'prefix_class' => 'elementor-tabs-view-',
|
||
|
'separator' => 'before',
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->end_controls_section();
|
||
|
|
||
|
$this->start_controls_section(
|
||
|
'section_tabs_style',
|
||
|
[
|
||
|
'label' => __( 'Tabs', 'elementor' ),
|
||
|
'tab' => Controls_Manager::TAB_STYLE,
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'navigation_width',
|
||
|
[
|
||
|
'label' => __( 'Navigation Width', 'elementor' ),
|
||
|
'type' => Controls_Manager::SLIDER,
|
||
|
'default' => [
|
||
|
'unit' => '%',
|
||
|
],
|
||
|
'range' => [
|
||
|
'%' => [
|
||
|
'min' => 10,
|
||
|
'max' => 50,
|
||
|
],
|
||
|
],
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-tabs-wrapper' => 'width: {{SIZE}}{{UNIT}}',
|
||
|
],
|
||
|
'condition' => [
|
||
|
'type' => 'vertical',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'border_width',
|
||
|
[
|
||
|
'label' => __( 'Border Width', 'elementor' ),
|
||
|
'type' => Controls_Manager::SLIDER,
|
||
|
'default' => [
|
||
|
'size' => 1,
|
||
|
],
|
||
|
'range' => [
|
||
|
'px' => [
|
||
|
'min' => 0,
|
||
|
'max' => 10,
|
||
|
],
|
||
|
],
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-tab-title, {{WRAPPER}} .elementor-tab-title:before, {{WRAPPER}} .elementor-tab-title:after, {{WRAPPER}} .elementor-tab-content, {{WRAPPER}} .elementor-tabs-content-wrapper' => 'border-width: {{SIZE}}{{UNIT}};',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'border_color',
|
||
|
[
|
||
|
'label' => __( 'Border Color', 'elementor' ),
|
||
|
'type' => Controls_Manager::COLOR,
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-tab-mobile-title, {{WRAPPER}} .elementor-tab-desktop-title.elementor-active, {{WRAPPER}} .elementor-tab-title:before, {{WRAPPER}} .elementor-tab-title:after, {{WRAPPER}} .elementor-tab-content, {{WRAPPER}} .elementor-tabs-content-wrapper' => 'border-color: {{VALUE}};',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'background_color',
|
||
|
[
|
||
|
'label' => __( 'Background Color', 'elementor' ),
|
||
|
'type' => Controls_Manager::COLOR,
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-tab-desktop-title.elementor-active' => 'background-color: {{VALUE}};',
|
||
|
'{{WRAPPER}} .elementor-tabs-content-wrapper' => 'background-color: {{VALUE}};',
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'heading_title',
|
||
|
[
|
||
|
'label' => __( 'Title', 'elementor' ),
|
||
|
'type' => Controls_Manager::HEADING,
|
||
|
'separator' => 'before',
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'tab_color',
|
||
|
[
|
||
|
'label' => __( 'Color', 'elementor' ),
|
||
|
'type' => Controls_Manager::COLOR,
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-tab-title' => 'color: {{VALUE}};',
|
||
|
],
|
||
|
'scheme' => [
|
||
|
'type' => Scheme_Color::get_type(),
|
||
|
'value' => Scheme_Color::COLOR_1,
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'tab_active_color',
|
||
|
[
|
||
|
'label' => __( 'Active Color', 'elementor' ),
|
||
|
'type' => Controls_Manager::COLOR,
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-tab-title.elementor-active' => 'color: {{VALUE}};',
|
||
|
],
|
||
|
'scheme' => [
|
||
|
'type' => Scheme_Color::get_type(),
|
||
|
'value' => Scheme_Color::COLOR_4,
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_group_control(
|
||
|
Group_Control_Typography::get_type(),
|
||
|
[
|
||
|
'name' => 'tab_typography',
|
||
|
'selector' => '{{WRAPPER}} .elementor-tab-title',
|
||
|
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'heading_content',
|
||
|
[
|
||
|
'label' => __( 'Content', 'elementor' ),
|
||
|
'type' => Controls_Manager::HEADING,
|
||
|
'separator' => 'before',
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_control(
|
||
|
'content_color',
|
||
|
[
|
||
|
'label' => __( 'Color', 'elementor' ),
|
||
|
'type' => Controls_Manager::COLOR,
|
||
|
'selectors' => [
|
||
|
'{{WRAPPER}} .elementor-tab-content' => 'color: {{VALUE}};',
|
||
|
],
|
||
|
'scheme' => [
|
||
|
'type' => Scheme_Color::get_type(),
|
||
|
'value' => Scheme_Color::COLOR_3,
|
||
|
],
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->add_group_control(
|
||
|
Group_Control_Typography::get_type(),
|
||
|
[
|
||
|
'name' => 'content_typography',
|
||
|
'selector' => '{{WRAPPER}} .elementor-tab-content',
|
||
|
'scheme' => Scheme_Typography::TYPOGRAPHY_3,
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$this->end_controls_section();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Render tabs widget output on the frontend.
|
||
|
*
|
||
|
* Written in PHP and used to generate the final HTML.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @access protected
|
||
|
*/
|
||
|
protected function render() {
|
||
|
$tabs = $this->get_settings( 'tabs' );
|
||
|
|
||
|
$id_int = substr( $this->get_id_int(), 0, 3 );
|
||
|
?>
|
||
|
<div class="elementor-tabs" role="tablist">
|
||
|
<div class="elementor-tabs-wrapper">
|
||
|
<?php foreach ( $tabs as $index => $item ) :
|
||
|
$tab_count = $index + 1;
|
||
|
|
||
|
$tab_title_setting_key = $this->get_repeater_setting_key( 'tab_title', 'tabs', $index );
|
||
|
|
||
|
$this->add_render_attribute( $tab_title_setting_key, [
|
||
|
'id' => 'elementor-tab-title-' . $id_int . $tab_count,
|
||
|
'class' => [ 'elementor-tab-title', 'elementor-tab-desktop-title' ],
|
||
|
'data-tab' => $tab_count,
|
||
|
'tabindex' => $id_int . $tab_count,
|
||
|
'role' => 'tab',
|
||
|
'aria-controls' => 'elementor-tab-content-' . $id_int . $tab_count,
|
||
|
] );
|
||
|
?>
|
||
|
<div <?php echo $this->get_render_attribute_string( $tab_title_setting_key ); ?>><?php echo $item['tab_title']; ?></div>
|
||
|
<?php endforeach; ?>
|
||
|
</div>
|
||
|
<div class="elementor-tabs-content-wrapper">
|
||
|
<?php foreach ( $tabs as $index => $item ) :
|
||
|
$tab_count = $index + 1;
|
||
|
|
||
|
$tab_content_setting_key = $this->get_repeater_setting_key( 'tab_content', 'tabs', $index );
|
||
|
|
||
|
$tab_title_mobile_setting_key = $this->get_repeater_setting_key( 'tab_title_mobile', 'tabs', $tab_count );
|
||
|
|
||
|
$this->add_render_attribute( $tab_content_setting_key, [
|
||
|
'id' => 'elementor-tab-content-' . $id_int . $tab_count,
|
||
|
'class' => [ 'elementor-tab-content', 'elementor-clearfix' ],
|
||
|
'data-tab' => $tab_count,
|
||
|
'role' => 'tabpanel',
|
||
|
'aria-labelledby' => 'elementor-tab-title-' . $id_int . $tab_count,
|
||
|
] );
|
||
|
|
||
|
$this->add_render_attribute( $tab_title_mobile_setting_key, [
|
||
|
'class' => [ 'elementor-tab-title', 'elementor-tab-mobile-title' ],
|
||
|
'tabindex' => $id_int . $tab_count,
|
||
|
'data-tab' => $tab_count,
|
||
|
'role' => 'tab',
|
||
|
] );
|
||
|
|
||
|
$this->add_inline_editing_attributes( $tab_content_setting_key, 'advanced' );
|
||
|
?>
|
||
|
<div <?php echo $this->get_render_attribute_string( $tab_title_mobile_setting_key ); ?>><?php echo $item['tab_title']; ?></div>
|
||
|
<div <?php echo $this->get_render_attribute_string( $tab_content_setting_key ); ?>><?php echo $this->parse_text_editor( $item['tab_content'] ); ?></div>
|
||
|
<?php endforeach; ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Render tabs widget output in the editor.
|
||
|
*
|
||
|
* Written as a Backbone JavaScript template and used to generate the live preview.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @access protected
|
||
|
*/
|
||
|
protected function _content_template() {
|
||
|
?>
|
||
|
<div class="elementor-tabs" role="tablist">
|
||
|
<#
|
||
|
if ( settings.tabs ) {
|
||
|
var tabindex = view.getIDInt().toString().substr( 0, 3 );
|
||
|
#>
|
||
|
<div class="elementor-tabs-wrapper">
|
||
|
<#
|
||
|
_.each( settings.tabs, function( item, index ) {
|
||
|
var tabCount = index + 1;
|
||
|
#>
|
||
|
<div id="elementor-tab-title-{{ tabindex + tabCount }}" class="elementor-tab-title elementor-tab-desktop-title" tabindex="{{ tabindex + tabCount }}" data-tab="{{ tabCount }}" role="tab" aria-controls="elementor-tab-content-{{ tabindex + tabCount }}">{{{ item.tab_title }}}</div>
|
||
|
<# } ); #>
|
||
|
</div>
|
||
|
<div class="elementor-tabs-content-wrapper">
|
||
|
<#
|
||
|
_.each( settings.tabs, function( item, index ) {
|
||
|
var tabCount = index + 1,
|
||
|
tabContentKey = view.getRepeaterSettingKey( 'tab_content', 'tabs',index );
|
||
|
|
||
|
view.addRenderAttribute( tabContentKey, {
|
||
|
'id': 'elementor-tab-content-' + tabindex + tabCount,
|
||
|
'class': [ 'elementor-tab-content', 'elementor-clearfix', 'elementor-repeater-item-' + item._id ],
|
||
|
'data-tab': tabCount,
|
||
|
'role' : 'tabpanel',
|
||
|
'aria-labelledby' : 'elementor-tab-title-' + tabindex + tabCount
|
||
|
} );
|
||
|
|
||
|
view.addInlineEditingAttributes( tabContentKey, 'advanced' );
|
||
|
#>
|
||
|
<div class="elementor-tab-title elementor-tab-mobile-title" data-tab="{{ tabCount }}" role="tab">{{{ item.tab_title }}}</div>
|
||
|
<div {{{ view.getRenderAttributeString( tabContentKey ) }}}>{{{ item.tab_content }}}</div>
|
||
|
<# } ); #>
|
||
|
</div>
|
||
|
<# } #>
|
||
|
</div>
|
||
|
<?php
|
||
|
}
|
||
|
}
|