startControlsSection( 'section_title', [ 'label' => __('Accordion'), ] ); $repeater = new Repeater(); $repeater->addControl( 'tab_title', [ 'label' => __('Title & Description'), 'type' => ControlsManager::TEXT, 'default' => __('Accordion Title'), 'dynamic' => [ 'active' => true, ], 'label_block' => true, ] ); $repeater->addControl( 'tab_content', [ 'label' => __('Content'), 'type' => ControlsManager::WYSIWYG, 'default' => __('Accordion Content'), 'show_label' => false, ] ); $this->addControl( 'tabs', [ 'label' => __('Accordion Items'), 'type' => ControlsManager::REPEATER, 'fields' => $repeater->getControls(), 'default' => [ [ 'tab_title' => __('Accordion #1'), 'tab_content' => __('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.'), ], [ 'tab_title' => __('Accordion #2'), 'tab_content' => __('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.'), ], ], 'title_field' => '{{{ tab_title }}}', ] ); $this->addControl( 'view', [ 'label' => __('View'), 'type' => ControlsManager::HIDDEN, 'default' => 'traditional', ] ); $this->addControl( 'selected_icon', [ 'label' => __('Icon'), 'type' => ControlsManager::ICONS, 'separator' => 'before', 'fa4compatibility' => 'icon', 'default' => [ 'value' => 'fas fa-plus', 'library' => 'fa-solid', ], 'recommended' => [ 'fa-solid' => [ 'plus', 'chevron-down', 'angle-down', 'angles-down', 'caret-down', 'square-caret-down', ], 'fa-regular' => [ 'square-caret-down', ], ], 'skin' => 'inline', 'label_block' => false, ] ); $this->addControl( 'selected_active_icon', [ 'label' => __('Active Icon'), 'type' => ControlsManager::ICONS, 'fa4compatibility' => 'icon_active', 'default' => [ 'value' => 'fas fa-minus', 'library' => 'fa-solid', ], 'recommended' => [ 'fa-solid' => [ 'minus', 'chevron-up', 'angle-up', 'angles-up', 'caret-up', 'square-caret-up', ], 'fa-regular' => [ 'square-caret-up', ], ], 'skin' => 'inline', 'label_block' => false, 'condition' => [ 'selected_icon[value]!' => '', ], ] ); $this->addControl( 'title_display', [ 'label' => __('Title Display'), 'type' => ControlsManager::CHOOSE, 'options' => WidgetHeading::getDisplaySizes(), 'style_transfer' => true, 'separator' => 'before', ] ); $this->addControl( 'title_html_tag', [ 'label' => __('Title HTML Tag'), 'type' => ControlsManager::SELECT, 'options' => [ 'h1' => 'H1', 'h2' => 'H2', 'h3' => 'H3', 'h4' => 'H4', 'h5' => 'H5', 'h6' => 'H6', 'div' => 'div', ], 'default' => 'div', ] ); $this->endControlsSection(); $this->startControlsSection( 'section_title_style', [ 'label' => __('Accordion'), 'tab' => ControlsManager::TAB_STYLE, ] ); $this->addControl( 'border_width', [ 'label' => __('Border Width'), 'type' => ControlsManager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 10, ], ], 'selectors' => [ '{{WRAPPER}} .elementor-accordion-item' => 'border-width: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .elementor-accordion-item .elementor-tab-content' => 'border-width: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .elementor-accordion-item .elementor-tab-title.elementor-active' => 'border-width: {{SIZE}}{{UNIT}};', ], ] ); $this->addControl( 'border_color', [ 'label' => __('Border Color'), 'type' => ControlsManager::COLOR, 'selectors' => [ '{{WRAPPER}} .elementor-accordion-item' => 'border-color: {{VALUE}};', '{{WRAPPER}} .elementor-accordion-item .elementor-tab-content' => 'border-top-color: {{VALUE}};', '{{WRAPPER}} .elementor-accordion-item .elementor-tab-title.elementor-active' => 'border-bottom-color: {{VALUE}};', ], ] ); $this->endControlsSection(); $this->startControlsSection( 'section_toggle_style_title', [ 'label' => __('Title'), 'tab' => ControlsManager::TAB_STYLE, ] ); $this->addControl( 'title_background', [ 'label' => __('Background'), 'type' => ControlsManager::COLOR, 'selectors' => [ '{{WRAPPER}} .elementor-tab-title' => 'background-color: {{VALUE}};', ], ] ); $this->addControl( 'title_color', [ 'label' => __('Color'), 'type' => ControlsManager::COLOR, 'selectors' => [ '{{WRAPPER}} .elementor-accordion-icon, {{WRAPPER}} a.elementor-accordion-title:not(#e)' => 'color: {{VALUE}};', ], 'scheme' => [ 'type' => SchemeColor::getType(), 'value' => SchemeColor::COLOR_1, ], ] ); $this->addControl( 'tab_active_color', [ 'label' => __('Active Color'), 'type' => ControlsManager::COLOR, 'selectors' => [ '{{WRAPPER}} .elementor-active .elementor-accordion-icon, {{WRAPPER}} .elementor-active a.elementor-accordion-title:not(#e)' => 'color: {{VALUE}};', ], 'scheme' => [ 'type' => SchemeColor::getType(), 'value' => SchemeColor::COLOR_4, ], ] ); $this->addGroupControl( GroupControlTypography::getType(), [ 'name' => 'title_typography', 'selector' => '{{WRAPPER}} a.elementor-accordion-title', 'scheme' => SchemeTypography::TYPOGRAPHY_1, ] ); $this->addGroupControl( GroupControlTextStroke::getType(), [ 'name' => 'text_stroke', 'selector' => '{{WRAPPER}} a.elementor-accordion-title', ] ); $this->addGroupControl( GroupControlTextShadow::getType(), [ 'name' => 'title_shadow', 'selector' => '{{WRAPPER}} a.elementor-accordion-title', ] ); $this->addResponsiveControl( 'title_padding', [ 'label' => __('Padding'), 'type' => ControlsManager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '{{WRAPPER}} .elementor-tab-title' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->endControlsSection(); $this->startControlsSection( 'section_toggle_style_icon', [ 'label' => __('Icon'), 'tab' => ControlsManager::TAB_STYLE, 'condition' => [ 'selected_icon[value]!' => '', ], ] ); $this->addControl( 'icon_align', [ 'label' => __('Alignment'), 'type' => ControlsManager::CHOOSE, 'options' => [ 'left' => [ 'title' => __('Start'), 'icon' => 'eicon-h-align-left', ], 'right' => [ 'title' => __('End'), 'icon' => 'eicon-h-align-right', ], ], 'default' => is_rtl() ? 'right' : 'left', 'toggle' => false, 'label_block' => false, ] ); $this->addControl( 'icon_color', [ 'label' => __('Color'), 'type' => ControlsManager::COLOR, 'selectors' => [ '{{WRAPPER}} .elementor-tab-title .elementor-accordion-icon i' => 'color: {{VALUE}};', '{{WRAPPER}} .elementor-tab-title .elementor-accordion-icon svg' => 'fill: {{VALUE}};', ], ] ); $this->addControl( 'icon_active_color', [ 'label' => __('Active Color'), 'type' => ControlsManager::COLOR, 'selectors' => [ '{{WRAPPER}} .elementor-tab-title.elementor-active .elementor-accordion-icon i' => 'color: {{VALUE}};', '{{WRAPPER}} .elementor-tab-title.elementor-active .elementor-accordion-icon svg' => 'fill: {{VALUE}};', ], ] ); $this->addResponsiveControl( 'icon_space', [ 'label' => __('Spacing'), 'type' => ControlsManager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .elementor-accordion-icon.elementor-accordion-icon-left' => 'margin-right: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .elementor-accordion-icon.elementor-accordion-icon-right' => 'margin-left: {{SIZE}}{{UNIT}};', ], ] ); $this->endControlsSection(); $this->startControlsSection( 'section_toggle_style_content', [ 'label' => __('Content'), 'tab' => ControlsManager::TAB_STYLE, ] ); $this->addControl( 'content_background_color', [ 'label' => __('Background'), 'type' => ControlsManager::COLOR, 'selectors' => [ '{{WRAPPER}} .elementor-tab-content' => 'background-color: {{VALUE}};', ], ] ); $this->addControl( 'content_color', [ 'label' => __('Color'), 'type' => ControlsManager::COLOR, 'selectors' => [ '{{WRAPPER}} .elementor-tab-content' => 'color: {{VALUE}};', ], 'scheme' => [ 'type' => SchemeColor::getType(), 'value' => SchemeColor::COLOR_3, ], ] ); $this->addGroupControl( GroupControlTypography::getType(), [ 'name' => 'content_typography', 'selector' => '{{WRAPPER}} .elementor-tab-content', 'scheme' => SchemeTypography::TYPOGRAPHY_3, ] ); $this->addGroupControl( GroupControlTextShadow::getType(), [ 'name' => 'content_shadow', 'selector' => '{{WRAPPER}} .elementor-tab-content', ] ); $this->addResponsiveControl( 'content_padding', [ 'label' => __('Padding'), 'type' => ControlsManager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '{{WRAPPER}} .elementor-tab-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->endControlsSection(); } /** * Render accordion widget output on the frontend. * * Written in PHP and used to generate the final HTML. * * @since 1.0.0 */ protected function render() { $settings = $this->getSettingsForDisplay(); $id_int = substr($this->getIdInt(), 0, 3); $display_class = !empty($settings['title_display']) ? " ce-display-{$settings['title_display']}" : ''; ?>
$item) { $tab_count = $index + 1; $tab_title_key = $this->getRepeaterSettingKey('tab_title', 'tabs', $index); $tab_content_key = $this->getRepeaterSettingKey('tab_content', 'tabs', $index); $this->addRenderAttribute($tab_title_key, [ 'id' => 'elementor-tab-title-' . $id_int . $tab_count, 'class' => ['elementor-tab-title', "ce-display-{$settings['title_display']}"], 'data-tab' => $tab_count, 'aria-controls' => 'elementor-tab-content-' . $id_int . $tab_count, ]); $this->addRenderAttribute($tab_content_key, [ 'id' => 'elementor-tab-content-' . $id_int . $tab_count, 'class' => ['elementor-tab-content', 'elementor-clearfix'], 'data-tab' => $tab_count, 'aria-labelledby' => 'elementor-tab-title-' . $id_int . $tab_count, ]); $this->addInlineEditingAttributes($tab_content_key, 'advanced'); ?>
< printRenderAttributeString($tab_title_key); ?> role="tab"> 'elementor-accordion-icon-closed'])) { ?> >
printRenderAttributeString($tab_content_key); ?> role="tabpanel">parseTextEditor($item['tab_content']); ?>
<# var icon; if ( settings.tabs ) { var tabindex = view.getIDInt().toString().substr( 0, 3 ); _.each( settings.tabs, function( item, index ) { var tabCount = index + 1, tabTitleKey = view.getRepeaterSettingKey( 'tab_title', 'tabs', index ), tabContentKey = view.getRepeaterSettingKey( 'tab_content', 'tabs', index ); view.addRenderAttribute( tabTitleKey, { 'id': 'elementor-tab-title-' + tabindex + tabCount, 'class': 'elementor-tab-title', 'tabindex': tabindex + tabCount, 'data-tab': tabCount, 'aria-controls': 'elementor-tab-content-' + tabindex + tabCount } ); view.addRenderAttribute( tabContentKey, { 'id': 'elementor-tab-content-' + tabindex + tabCount, 'class': [ 'elementor-tab-content', 'elementor-clearfix' ], 'data-tab': tabCount, 'aria-labelledby': 'elementor-tab-title-' + tabindex + tabCount } ); view.addInlineEditingAttributes( tabContentKey, 'advanced' ); #>
<{{{ settings.title_html_tag }}} {{{ view.getRenderAttributeString( tabTitleKey ) }}} role="tab"> <# if ( icon = elementor.helpers.getBcIcon(view, settings, 'icon', {'class': 'elementor-accordion-icon-closed'}) ) { #> <# } #> {{{ item.tab_title }}}
{{{ item.tab_content }}}
<# } ); } #>