File: /home/lucendi/www/wp-content/themes/divi/includes/builder/module/Accordion.php
<?php
class ET_Builder_Module_Accordion extends ET_Builder_Module {
function init() {
$this->name = esc_html__( 'Accordion', 'et_builder' );
$this->slug = 'et_pb_accordion';
$this->fb_support = true;
$this->child_slug = 'et_pb_accordion_item';
$this->whitelisted_fields = array(
'admin_label',
'module_id',
'module_class',
'open_toggle_background_color',
'closed_toggle_background_color',
'icon_color',
'closed_toggle_text_color',
'open_toggle_text_color',
);
$this->main_css_element = '%%order_class%%.et_pb_accordion';
$this->options_toggles = array(
'advanced' => array(
'toggles' => array(
'icon' => esc_html__( 'Icon', 'et_builder' ),
'text' => array(
'title' => esc_html__( 'Text', 'et_builder' ),
'priority' => 49,
),
),
),
);
$this->advanced_options = array(
'border' => array(
'css' => array(
'main' => array(
'border_radii' => "{$this->main_css_element} .et_pb_accordion_item",
'border_styles' => "{$this->main_css_element} .et_pb_accordion_item",
),
),
'defaults' => array(
'border_radii' => 'on|0px|0px|0px|0px',
'border_styles' => array(
'width' => '1px',
'color' => '#d9d9d9',
'style' => 'solid',
),
),
),
'fonts' => array(
'body' => array(
'label' => esc_html__( 'Body', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} .et_pb_toggle_content",
'plugin_main' => "{$this->main_css_element} .et_pb_toggle_content, {$this->main_css_element} .et_pb_toggle_content p",
'line_height' => "{$this->main_css_element} .et_pb_toggle_content p",
),
),
'toggle' => array(
'label' => esc_html__( 'Toggle', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} h5.et_pb_toggle_title, {$this->main_css_element} h1.et_pb_toggle_title, {$this->main_css_element} h2.et_pb_toggle_title, {$this->main_css_element} h3.et_pb_toggle_title, {$this->main_css_element} h4.et_pb_toggle_title, {$this->main_css_element} h6.et_pb_toggle_title",
'important' => 'plugin_only',
),
'header_level' => array(
'default' => 'h5',
),
),
),
'background' => array(),
'custom_margin_padding' => array(
'css' => array(
'padding' => "{$this->main_css_element} .et_pb_toggle_content",
'margin' => $this->main_css_element,
'important' => 'all',
),
),
'max_width' => array(),
'text' => array(),
'filters' => array(),
);
$this->custom_css_options = array(
'toggle' => array(
'label' => esc_html__( 'Toggle', 'et_builder' ),
'selector' => '.et_pb_toggle',
),
'open_toggle' => array(
'label' => esc_html__( 'Open Toggle', 'et_builder' ),
'selector' => '.et_pb_toggle_open',
),
'toggle_title' => array(
'label' => esc_html__( 'Toggle Title', 'et_builder' ),
'selector' => '.et_pb_toggle_title',
),
'toggle_icon' => array(
'label' => esc_html__( 'Toggle Icon', 'et_builder' ),
'selector' => '.et_pb_toggle_title:before',
),
'toggle_content' => array(
'label' => esc_html__( 'Toggle Content', 'et_builder' ),
'selector' => '.et_pb_toggle_content',
),
);
}
function get_fields() {
$fields = array(
'open_toggle_text_color' => array(
'label' => esc_html__( 'Open Toggle Text Color', 'et_builder' ),
'type' => 'color-alpha',
'custom_color' => true,
'tab_slug' => 'advanced',
'toggle_slug' => 'toggle',
),
'open_toggle_background_color' => array(
'label' => esc_html__( 'Open Toggle Background Color', 'et_builder' ),
'type' => 'color-alpha',
'custom_color' => true,
'tab_slug' => 'advanced',
'toggle_slug' => 'toggle',
),
'closed_toggle_text_color' => array(
'label' => esc_html__( 'Closed Toggle Text Color', 'et_builder' ),
'type' => 'color-alpha',
'custom_color' => true,
'tab_slug' => 'advanced',
'toggle_slug' => 'toggle',
),
'closed_toggle_background_color' => array(
'label' => esc_html__( 'Closed Toggle Background Color', 'et_builder' ),
'type' => 'color-alpha',
'custom_color' => true,
'tab_slug' => 'advanced',
'toggle_slug' => 'toggle',
),
'icon_color' => array(
'label' => esc_html__( 'Icon Color', 'et_builder' ),
'type' => 'color-alpha',
'custom_color' => true,
'tab_slug' => 'advanced',
'toggle_slug' => 'icon',
),
'disabled_on' => array(
'label' => esc_html__( 'Disable on', 'et_builder' ),
'type' => 'multiple_checkboxes',
'options' => array(
'phone' => esc_html__( 'Phone', 'et_builder' ),
'tablet' => esc_html__( 'Tablet', 'et_builder' ),
'desktop' => esc_html__( 'Desktop', 'et_builder' ),
),
'additional_att' => 'disable_on',
'option_category' => 'configuration',
'description' => esc_html__( 'This will disable the module on selected devices', 'et_builder' ),
'tab_slug' => 'custom_css',
'toggle_slug' => 'visibility',
),
'admin_label' => array(
'label' => esc_html__( 'Admin Label', 'et_builder' ),
'type' => 'text',
'description' => esc_html__( 'This will change the label of the module in the builder for easy identification.', 'et_builder' ),
'toggle_slug' => 'admin_label',
),
'module_id' => array(
'label' => esc_html__( 'CSS ID', 'et_builder' ),
'type' => 'text',
'option_category' => 'configuration',
'tab_slug' => 'custom_css',
'toggle_slug' => 'classes',
'option_class' => 'et_pb_custom_css_regular',
),
'module_class' => array(
'label' => esc_html__( 'CSS Class', 'et_builder' ),
'type' => 'text',
'option_category' => 'configuration',
'tab_slug' => 'custom_css',
'toggle_slug' => 'classes',
'option_class' => 'et_pb_custom_css_regular',
),
);
return $fields;
}
function pre_shortcode_content() {
global $et_pb_accordion_item_number, $et_pb_accordion_header_level;
$et_pb_accordion_item_number = 1;
$et_pb_accordion_header_level = $this->shortcode_atts['toggle_level'];
}
function shortcode_callback( $atts, $content = null, $function_name ) {
$module_id = $this->shortcode_atts['module_id'];
$module_class = $this->shortcode_atts['module_class'];
$open_toggle_background_color = $this->shortcode_atts['open_toggle_background_color'];
$closed_toggle_background_color = $this->shortcode_atts['closed_toggle_background_color'];
$icon_color = $this->shortcode_atts['icon_color'];
$closed_toggle_text_color = $this->shortcode_atts['closed_toggle_text_color'];
$open_toggle_text_color = $this->shortcode_atts['open_toggle_text_color'];
global $et_pb_accordion_item_number;
$module_class = ET_Builder_Element::add_module_order_class( $module_class, $function_name );
$video_background = $this->video_background();
$parallax_image_background = $this->get_parallax_image_background();
if ( '' !== $open_toggle_background_color ) {
ET_Builder_Element::set_style( $function_name, array(
'selector' => '%%order_class%% .et_pb_toggle_open',
'declaration' => sprintf(
'background-color: %1$s;',
esc_html( $open_toggle_background_color )
),
) );
}
if ( '' !== $closed_toggle_background_color ) {
ET_Builder_Element::set_style( $function_name, array(
'selector' => '%%order_class%% .et_pb_toggle_close',
'declaration' => sprintf(
'background-color: %1$s;',
esc_html( $closed_toggle_background_color )
),
) );
}
if ( '' !== $icon_color ) {
ET_Builder_Element::set_style( $function_name, array(
'selector' => '%%order_class%% .et_pb_toggle_title:before',
'priority' => ET_Builder_Element::DEFAULT_PRIORITY,
'declaration' => sprintf(
'color: %1$s;',
esc_html( $icon_color )
),
) );
}
if ( '' !== $closed_toggle_text_color ) {
ET_Builder_Element::set_style( $function_name, array(
'selector' => '%%order_class%% .et_pb_toggle_close h5.et_pb_toggle_title, %%order_class%% .et_pb_toggle_close h1.et_pb_toggle_title, %%order_class%% .et_pb_toggle_close h2.et_pb_toggle_title, %%order_class%% .et_pb_toggle_close h3.et_pb_toggle_title, %%order_class%% .et_pb_toggle_close h4.et_pb_toggle_title, %%order_class%% .et_pb_toggle_close h6.et_pb_toggle_title',
'declaration' => sprintf(
'color: %1$s !important;',
esc_html( $closed_toggle_text_color )
),
) );
}
if ( '' !== $open_toggle_text_color ) {
ET_Builder_Element::set_style( $function_name, array(
'selector' => '%%order_class%% .et_pb_toggle_open h5.et_pb_toggle_title, %%order_class%% .et_pb_toggle_open h1.et_pb_toggle_title, %%order_class%% .et_pb_toggle_open h2.et_pb_toggle_title, %%order_class%% .et_pb_toggle_open h3.et_pb_toggle_title, %%order_class%% .et_pb_toggle_open h4.et_pb_toggle_title, %%order_class%% .et_pb_toggle_open h6.et_pb_toggle_title',
'declaration' => sprintf(
'color: %1$s !important;',
esc_html( $open_toggle_text_color )
),
) );
}
$output = sprintf(
'<div%3$s class="et_pb_module et_pb_accordion%2$s%4$s%6$s%8$s">
%7$s
%5$s
%1$s
</div> <!-- .et_pb_accordion -->',
$this->shortcode_content,
( '' !== $module_class ? sprintf( ' %1$s', esc_attr( $module_class ) ) : '' ),
( '' !== $module_id ? sprintf( ' id="%1$s"', esc_attr( $module_id ) ) : '' ),
'' !== $video_background ? ' et_pb_section_video et_pb_preload' : '',
$video_background,
'' !== $parallax_image_background ? ' et_pb_section_parallax' : '',
$parallax_image_background,
$this->get_text_orientation_classname()
);
return $output;
}
public function process_box_shadow( $function_name ) {
$boxShadow = ET_Builder_Module_Fields_Factory::get( 'BoxShadow' );
$selector = sprintf( '.%1$s .et_pb_toggle', self::get_module_order_class( $function_name ) );
self::set_style( $function_name, array(
'selector' => $selector,
'declaration' => $boxShadow->get_value( $this->shortcode_atts )
) );
}
}
new ET_Builder_Module_Accordion;