File: /home/lucendi/www/wp-content/themes/divi/includes/builder/module/FullwidthSlider.php
<?php
class ET_Builder_Module_Fullwidth_Slider extends ET_Builder_Module {
function init() {
$this->name = esc_html__( 'Fullwidth Slider', 'et_builder' );
$this->slug = 'et_pb_fullwidth_slider';
$this->fb_support = true;
$this->fullwidth = true;
$this->child_slug = 'et_pb_slide';
$this->child_item_text = esc_html__( 'Slide', 'et_builder' );
$this->whitelisted_fields = array(
'show_arrows',
'show_pagination',
'auto',
'auto_speed',
'auto_ignore_hover',
'parallax',
'parallax_method',
'background_position',
'background_size',
'admin_label',
'module_id',
'module_class',
'show_content_on_mobile',
'show_cta_on_mobile',
'show_image_video_mobile',
);
$this->fields_defaults = array(
'show_arrows' => array( 'on' ),
'show_pagination' => array( 'on' ),
'auto' => array( 'off' ),
'auto_speed' => array( '7000' ),
'auto_ignore_hover' => array( 'off' ),
'parallax' => array( 'off' ),
'parallax_method' => array( 'off' ),
'background_position' => array( 'center' ),
'background_size' => array( 'cover' ),
'show_content_on_mobile' => array( 'on' ),
'show_cta_on_mobile' => array( 'on' ),
'show_image_video_mobile' => array( 'off' ),
'text_orientation' => array( 'center' ),
);
$this->main_css_element = '%%order_class%%.et_pb_slider';
$this->options_toggles = array(
'general' => array(
'toggles' => array(
'elements' => esc_html__( 'Elements', 'et_builder' ),
'background' => esc_html__( 'Background', 'et_builder' ),
),
),
'advanced' => array(
'toggles' => array(
'layout' => esc_html__( 'Layout', 'et_builder' ),
),
),
'custom_css' => array(
'toggles' => array(
'animation' => array(
'title' => esc_html__( 'Animation', 'et_builder' ),
'priority' => 90,
),
),
),
);
$this->advanced_options = array(
'fonts' => array(
'header' => array(
'label' => esc_html__( 'Title', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} .et_pb_slide_description .et_pb_slide_title",
'plugin_main' => "{$this->main_css_element} .et_pb_slide_description .et_pb_slide_title, {$this->main_css_element} .et_pb_slide_description .et_pb_slide_title a",
'important' => array(
'color',
'size',
'font-size',
'plugin_all',
),
),
'header_level' => array(
'default' => 'h2',
),
),
'body' => array(
'label' => esc_html__( 'Body', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element}.et_pb_module .et_pb_slides .et_pb_slide_content",
'line_height' => "{$this->main_css_element} p",
'important' => array( 'size', 'font-size' ),
),
),
),
'button' => array(
'button' => array(
'label' => esc_html__( 'Button', 'et_builder' ),
'css' => array(
'plugin_main' => "{$this->main_css_element} .et_pb_more_button.et_pb_button",
'alignment' => "{$this->main_css_element} .et_pb_button_wrapper",
),
'use_alignment' => true,
),
),
'background' => array(
'use_background_color' => 'fields_only',
'use_background_color_gradient' => 'fields_only',
'use_background_image' => 'fields_only',
),
'custom_margin_padding' => array(
'css' => array(
'main' => '%%order_class%%',
'padding' => '%%order_class%% .et_pb_slide_description, .et_pb_slider_fullwidth_off%%order_class%% .et_pb_slide_description',
'important' => array( 'custom_margin' ), // needed to overwrite last module margin-bottom styling
),
),
'max_width' => array(),
'text' => array(
'css' => array(
'text_orientation' => '%%order_class%% .et_pb_slide .et_pb_slide_description',
'text_shadow' => '%%order_class%% .et_pb_slide .et_pb_slide_description',
),
),
'filters' => array(),
);
$this->custom_css_options = array(
'slide_description' => array(
'label' => esc_html__( 'Slide Description', 'et_builder' ),
'selector' => '.et_pb_slide_description',
),
'slide_title' => array(
'label' => esc_html__( 'Slide Title', 'et_builder' ),
'selector' => '.et_pb_slide_description .et_pb_slide_title',
),
'slide_button' => array(
'label' => esc_html__( 'Slide Button', 'et_builder' ),
'selector' => '.et_pb_slider .et_pb_slide .et_pb_slide_description a.et_pb_more_button.et_pb_button',
'no_space_before_selector' => true,
),
'slide_controllers' => array(
'label' => esc_html__( 'Slide Controllers', 'et_builder' ),
'selector' => '.et-pb-controllers',
),
'slide_active_controller' => array(
'label' => esc_html__( 'Slide Active Controller', 'et_builder' ),
'selector' => '.et-pb-controllers .et-pb-active-control',
),
'slide_image' => array(
'label' => esc_html__( 'Slide Image', 'et_builder' ),
'selector' => '.et_pb_slide_image',
),
'slide_arrows' => array(
'label' => esc_html__( 'Slide Arrows', 'et_builder' ),
'selector' => '.et-pb-slider-arrows a',
),
);
}
function get_fields() {
$fields = array(
'show_arrows' => array(
'label' => esc_html__( 'Show Arrows', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'configuration',
'options' => array(
'on' => esc_html__( 'Yes', 'et_builder' ),
'off' => esc_html__( 'No', 'et_builder' ),
),
'toggle_slug' => 'elements',
'description' => esc_html__( 'This setting allows you to turn the navigation arrows on or off.', 'et_builder' ),
),
'show_pagination' => array(
'label' => esc_html__( 'Show Controls', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'configuration',
'options' => array(
'on' => esc_html__( 'Yes', 'et_builder' ),
'off' => esc_html__( 'No', 'et_builder' ),
),
'toggle_slug' => 'elements',
'description' => esc_html__( 'Disabling this option will remove the circle button at the bottom of the slider.', 'et_builder' ),
),
'show_content_on_mobile' => array(
'label' => esc_html__( 'Show Content On Mobile', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'layout',
'options' => array(
'on' => esc_html__( 'Yes', 'et_builder' ),
'off' => esc_html__( 'No', 'et_builder' ),
),
'tab_slug' => 'custom_css',
'toggle_slug' => 'visibility',
),
'show_cta_on_mobile' => array(
'label' => esc_html__( 'Show CTA On Mobile', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'layout',
'options' => array(
'on' => esc_html__( 'Yes', 'et_builder' ),
'off' => esc_html__( 'No', 'et_builder' ),
),
'tab_slug' => 'custom_css',
'toggle_slug' => 'visibility',
),
'show_image_video_mobile' => array(
'label' => esc_html__( 'Show Image / Video On Mobile', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'layout',
'options' => array(
'off' => esc_html__( 'No', 'et_builder' ),
'on' => esc_html__( 'Yes', 'et_builder' ),
),
'tab_slug' => 'custom_css',
'toggle_slug' => 'visibility',
),
'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_slider_has_video, $et_pb_slider_parallax, $et_pb_slider_parallax_method, $et_pb_slider_show_mobile, $et_pb_slider_custom_icon, $et_pb_slider_item_num, $et_pb_slider_button_rel;
$et_pb_slider_item_num = 0;
$parallax = $this->shortcode_atts['parallax'];
$parallax_method = $this->shortcode_atts['parallax_method'];
$show_content_on_mobile = $this->shortcode_atts['show_content_on_mobile'];
$show_cta_on_mobile = $this->shortcode_atts['show_cta_on_mobile'];
$button_rel = $this->shortcode_atts['button_rel'];
$button_custom = $this->shortcode_atts['custom_button'];
$custom_icon = $this->shortcode_atts['button_icon'];
$et_pb_slider_has_video = false;
$et_pb_slider_parallax = $parallax;
$et_pb_slider_parallax_method = $parallax_method;
$et_pb_slider_show_mobile = array(
'show_content_on_mobile' => $show_content_on_mobile,
'show_cta_on_mobile' => $show_cta_on_mobile,
);
$et_pb_slider_custom_icon = 'on' === $button_custom ? $custom_icon : '';
$et_pb_slider_button_rel = $button_rel;
// Pass Fullwidth Slider Module settings to Slide Item
global $et_pb_slider;
$et_pb_slider = array(
'background_color' => $this->shortcode_atts['background_color'],
'use_background_color_gradient' => $this->shortcode_atts['use_background_color_gradient'],
'background_color_gradient_type' => $this->shortcode_atts['background_color_gradient_type'],
'background_color_gradient_direction' => $this->shortcode_atts['background_color_gradient_direction'],
'background_color_gradient_direction_radial' => $this->shortcode_atts['background_color_gradient_direction_radial'],
'background_color_gradient_start' => $this->shortcode_atts['background_color_gradient_start'],
'background_color_gradient_end' => $this->shortcode_atts['background_color_gradient_end'],
'background_color_gradient_start_position' => $this->shortcode_atts['background_color_gradient_start_position'],
'background_color_gradient_end_position' => $this->shortcode_atts['background_color_gradient_end_position'],
'background_image' => $this->shortcode_atts['background_image'],
'background_size' => $this->shortcode_atts['background_size'],
'background_position' => $this->shortcode_atts['background_position'],
'background_repeat' => $this->shortcode_atts['background_repeat'],
'background_blend' => $this->shortcode_atts['background_blend'],
'parallax' => $this->shortcode_atts['parallax'],
'parallax_method' => $this->shortcode_atts['parallax_method'],
'background_video_mp4' => $this->shortcode_atts['background_video_mp4'],
'background_video_webm' => $this->shortcode_atts['background_video_webm'],
'background_video_width' => $this->shortcode_atts['background_video_width'],
'background_video_height' => $this->shortcode_atts['background_video_height'],
'header_level' => $this->shortcode_atts['header_level'],
);
}
function shortcode_callback( $atts, $content = null, $function_name ) {
$module_id = $this->shortcode_atts['module_id'];
$module_class = $this->shortcode_atts['module_class'];
$show_arrows = $this->shortcode_atts['show_arrows'];
$show_pagination = $this->shortcode_atts['show_pagination'];
$parallax = $this->shortcode_atts['parallax'];
$parallax_method = $this->shortcode_atts['parallax_method'];
$auto = $this->shortcode_atts['auto'];
$auto_speed = $this->shortcode_atts['auto_speed'];
$auto_ignore_hover = $this->shortcode_atts['auto_ignore_hover'];
$show_image_video_mobile = $this->shortcode_atts['show_image_video_mobile'];
$background_position = $this->shortcode_atts['background_position'];
$background_size = $this->shortcode_atts['background_size'];
global $et_pb_slider_has_video, $et_pb_slider_parallax, $et_pb_slider_parallax_method, $et_pb_slider_show_mobile, $et_pb_slider_custom_icon, $et_pb_slider;
$content = $this->shortcode_content;
$module_class = ET_Builder_Element::add_module_order_class( $module_class, $function_name );
if ( '' !== $background_position && 'default' !== $background_position && 'off' === $parallax ) {
$processed_position = str_replace( '_', ' ', $background_position );
ET_Builder_Module::set_style( $function_name, array(
'selector' => '%%order_class%% .et_pb_slide',
'declaration' => sprintf(
'background-position: %1$s;',
esc_html( $processed_position )
),
) );
}
if ( '' !== $background_size && 'default' !== $background_size && 'off' === $parallax ) {
ET_Builder_Module::set_style( $function_name, array(
'selector' => '%%order_class%% .et_pb_slide',
'declaration' => sprintf(
'-moz-background-size: %1$s;
-webkit-background-size: %1$s;
background-size: %1$s;',
esc_html( $background_size )
),
) );
}
$fullwidth = 'et_pb_fullwidth_slider' === $function_name ? 'on' : 'off';
$class = '';
$class .= 'off' === $fullwidth ? ' et_pb_slider_fullwidth_off' : '';
$class .= 'off' === $show_arrows ? ' et_pb_slider_no_arrows' : '';
$class .= 'off' === $show_pagination ? ' et_pb_slider_no_pagination' : '';
$class .= 'on' === $parallax ? ' et_pb_slider_parallax' : '';
$class .= 'on' === $auto ? ' et_slider_auto et_slider_speed_' . esc_attr( $auto_speed ) : '';
$class .= 'on' === $auto_ignore_hover ? ' et_slider_auto_ignore_hover' : '';
$class .= 'on' === $show_image_video_mobile ? ' et_pb_slider_show_image' : '';
$output = sprintf(
'<div%4$s class="et_pb_module et_pb_slider%1$s%3$s%5$s">
<div class="et_pb_slides">
%2$s
</div> <!-- .et_pb_slides -->
%6$s
</div> <!-- .et_pb_slider -->
',
esc_attr( $class ),
$content,
( $et_pb_slider_has_video ? ' et_pb_preload' : '' ),
( '' !== $module_id ? sprintf( ' id="%1$s"', esc_attr( $module_id ) ) : '' ),
( '' !== $module_class ? sprintf( ' %1$s', esc_attr( $module_class ) ) : '' ),
$this->inner_shadow_back_compatibility( $function_name )
);
// Reset passed slider item value
$et_pb_slider = array();
return $output;
}
public function process_box_shadow( $function_name ) {
$boxShadow = ET_Builder_Module_Fields_Factory::get( 'BoxShadow' );
$selector = '.' . self::get_module_order_class( $function_name );
if ( isset( $this->shortcode_atts['custom_button'] ) && 'on' === $this->shortcode_atts['custom_button'] ) {
self::set_style( $function_name, array(
'selector' => $selector . ' .et_pb_button',
'declaration' => $boxShadow->get_value( $this->shortcode_atts, array( 'suffix' => '_button' ) )
) );
}
self::set_style( $function_name, $boxShadow->get_style( $selector, $this->shortcode_atts ) );
}
private function inner_shadow_back_compatibility( $functions_name ) {
$utils = ET_Core_Data_Utils::instance();
$atts = $this->shortcode_atts;
$style = '';
if (
version_compare( $utils->array_get( $atts, '_builder_version', '3.0.93' ), '3.0.99', 'lt' )
) {
$class = self::get_module_order_class( $functions_name );
$style = sprintf(
'<style>%1$s</style>',
sprintf(
'.%1$s.et_pb_slider .et_pb_slide {'
. '-webkit-box-shadow: none; '
. '-moz-box-shadow: none; '
. 'box-shadow: none; '
.'}',
esc_attr( $class )
)
);
if ( 'off' !== $utils->array_get( $atts, 'show_inner_shadow' ) ) {
$style .= sprintf(
'<style>%1$s</style>',
sprintf(
'.%1$s > .box-shadow-overlay { '
. '-webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1); '
. '-moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1); '
. 'box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1); '
. '}',
esc_attr( $class )
)
);
}
}
return $style;
}
}
new ET_Builder_Module_Fullwidth_Slider;