| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 |
- <?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 keywords.
- *
- * Retrieve the list of keywords the widget belongs to.
- *
- * @since 2.1.0
- * @access public
- *
- * @return array Widget keywords.
- */
- public function get_keywords() {
- return [ 'tabs', 'accordion', 'toggle' ];
- }
- /**
- * 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' ),
- ]
- );
- $repeater = new Repeater();
- $repeater->add_control(
- 'tab_title',
- [
- 'label' => __( 'Title & Content', 'elementor' ),
- 'type' => Controls_Manager::TEXT,
- 'default' => __( 'Tab Title', 'elementor' ),
- 'placeholder' => __( 'Tab Title', 'elementor' ),
- 'label_block' => true,
- ]
- );
- $repeater->add_control(
- 'tab_content',
- [
- 'label' => __( 'Content', 'elementor' ),
- 'default' => __( 'Tab Content', 'elementor' ),
- 'placeholder' => __( 'Tab Content', 'elementor' ),
- 'type' => Controls_Manager::WYSIWYG,
- 'show_label' => false,
- ]
- );
- $this->add_control(
- 'tabs',
- [
- 'label' => __( 'Tabs Items', 'elementor' ),
- 'type' => Controls_Manager::REPEATER,
- 'fields' => $repeater->get_controls(),
- 'default' => [
- [
- 'tab_title' => __( 'Tab #1', 'elementor' ),
- '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' => __( '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' ),
- ],
- ],
- '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_for_display( '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
- }
- }
|