File: /home/lucendi/www/wp-content/themes/divi/includes/builder/module/SocialMediaFollow.php
<?php
class ET_Builder_Module_Social_Media_Follow extends ET_Builder_Module {
function init() {
$this->name = esc_html__( 'Social Media Follow', 'et_builder' );
$this->slug = 'et_pb_social_media_follow';
$this->fb_support = true;
$this->child_slug = 'et_pb_social_media_follow_network';
$this->child_item_text = esc_html__( 'Social Network', 'et_builder' );
$this->main_css_element = 'ul%%order_class%%';
$this->whitelisted_fields = array(
'link_shape',
'background_layout',
'url_new_window',
'follow_button',
'admin_label',
'module_id',
'module_class',
);
$this->options_toggles = array(
'general' => array(
'toggles' => array(
'icon' => esc_html__( 'Icon', 'et_builder' ),
),
),
'advanced' => array(
'toggles' => array(
'alignment' => esc_html__( 'Alignment', 'et_builder' ),
'text' => esc_html__( 'Text', 'et_builder' ),
),
),
);
$this->fields_defaults = array(
'background_layout' => array( 'light' ),
'url_new_window' => array( 'on' ),
'follow_button' => array( 'off' ),
);
$this->custom_css_options = array(
'before' => array(
'label' => esc_html__( 'Before', 'et_builder' ),
'selector' => 'ul%%order_class%%:before',
),
'main_element' => array(
'label' => esc_html__( 'Main Element', 'et_builder' ),
'selector' => 'ul%%order_class%%',
),
'after' => array(
'label' => esc_html__( 'After', 'et_builder' ),
'selector' => 'ul%%order_class%%:after',
),
'social_follow' => array(
'label' => esc_html__( 'Social Follow', 'et_builder' ),
'selector' => 'li',
),
'social_icon' => array(
'label' => esc_html__( 'Social Icon', 'et_builder' ),
'selector' => 'li a.icon',
),
'follow_button' => array(
'label' => esc_html__( 'Follow Button', 'et_builder' ),
'selector' => 'li a.follow_button',
),
);
$this->advanced_options = array(
'background' => array(),
'border' => array(
'css' => array(
'main' => array(
'border_radii' => "{$this->main_css_element} a.icon",
'border_styles' => "{$this->main_css_element} a",
),
),
'defaults' => array(
'border_radii' => 'on|3px|3px|3px|3px',
'border_styles' => array(
'width' => '0px',
'color' => '#333333',
'style' => 'solid',
),
),
),
'custom_margin_padding' => array(
'css' => array(
'main' => 'ul%%order_class%%',
'important' => array( 'custom_margin' ), // needed to overwrite last module margin-bottom styling
),
),
'max_width' => array(),
'text' => array(
'text_orientation' => array(
'exclude_options' => array( 'justified' ),
),
'options' => array(
'text_orientation' => array(
'label' => esc_html__( 'Item Alignment', 'et_builder' ),
'toggle_slug' => 'alignment',
'options_icon' => 'module_align',
),
),
),
'filters' => array(),
);
}
function get_fields() {
$fields = array(
'background_layout' => array(
'label' => esc_html__( 'Text Color', 'et_builder' ),
'type' => 'select',
'option_category' => 'color_option',
'options' => array(
'light' => esc_html__( 'Dark', 'et_builder' ),
'dark' => esc_html__( 'Light', 'et_builder' ),
),
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'description' => esc_html__( 'Here you can choose whether your text should be light or dark. If you are working with a dark background, then your text should be light. If your background is light, then your text should be set to dark.', 'et_builder' ),
),
'url_new_window' => array(
'label' => esc_html__( 'Url Opens', 'et_builder' ),
'type' => 'select',
'option_category' => 'configuration',
'options' => array(
'off' => esc_html__( 'In The Same Window', 'et_builder' ),
'on' => esc_html__( 'In The New Tab', 'et_builder' ),
),
'toggle_slug' => 'icon',
'description' => esc_html__( 'Here you can choose whether or not your link opens in a new window', 'et_builder' ),
),
'follow_button' => array(
'label' => esc_html__( 'Follow Button', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'configuration',
'options' => array(
'off' => esc_html__( 'Off', 'et_builder' ),
'on' => esc_html__( 'On', 'et_builder' ),
),
'toggle_slug' => 'icon',
'description' => esc_html__( 'Here you can choose whether or not to include the follow button next to the icon.', 'et_builder' ),
),
'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_social_media_follow_link;
$url_new_window = $this->shortcode_atts['url_new_window'];
$follow_button = $this->shortcode_atts['follow_button'];
$et_pb_social_media_follow_link = array(
'url_new_window' => $url_new_window,
'follow_button' => $follow_button,
);
}
function shortcode_callback( $atts, $content = null, $function_name ) {
global $et_pb_social_media_follow_link;
$module_id = $this->shortcode_atts['module_id'];
$module_class = $this->shortcode_atts['module_class'];
$background_layout = $this->shortcode_atts['background_layout'];
$class = " et_pb_module et_pb_bg_layout_{$background_layout}";
$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();
// Get custom borders, if any
$atts = $this->shortcode_atts;
$output = sprintf(
'<ul%3$s class="et_pb_social_media_follow%2$s%4$s%5$s%6$s%8$s clearfix%10$s">
%9$s
%7$s
%1$s
</ul> <!-- .et_pb_counters -->',
$this->shortcode_content,
esc_attr( $class ),
( '' !== $module_id ? sprintf( ' id="%1$s"', esc_attr( $module_id ) ) : '' ),
( '' !== $module_class ? sprintf( ' %1$s', esc_attr( $module_class ) ) : '' ),
( 'on' === $et_pb_social_media_follow_link['follow_button'] ? ' has_follow_button' : '' ),
'' !== $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_social_icon a', 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_Social_Media_Follow;