File: /home/lucendi/www/wp-content/themes/divi/includes/builder/module/TeamMember.php
<?php
class ET_Builder_Module_Team_Member extends ET_Builder_Module {
function init() {
$this->name = esc_html__( 'Person', 'et_builder' );
$this->slug = 'et_pb_team_member';
$this->fb_support = true;
$this->whitelisted_fields = array(
'name',
'position',
'image_url',
'animation',
'background_layout',
'facebook_url',
'twitter_url',
'google_url',
'linkedin_url',
'content_new',
'admin_label',
'module_id',
'module_class',
'icon_color',
'icon_hover_color',
'box_shadow_style_image',
'box_shadow_horizontal_image',
'box_shadow_vertical_image',
'box_shadow_blur_image',
'box_shadow_spread_image',
'box_shadow_color_image',
'box_shadow_position_image',
);
$this->fields_defaults = array(
'animation' => array( 'off' ),
'background_layout' => array( 'light' ),
);
$this->main_css_element = '%%order_class%%.et_pb_team_member';
$this->options_toggles = array(
'general' => array(
'toggles' => array(
'main_content' => esc_html__( 'Text', 'et_builder' ),
'image' => esc_html__( 'Image', 'et_builder' ),
),
),
'advanced' => array(
'toggles' => array(
'icon' => esc_html__( 'Icon', 'et_builder' ),
'image' => esc_html__( 'Image', 'et_builder' ),
'text' => array(
'title' => esc_html__( 'Text', 'et_builder' ),
'priority' => 49,
),
),
),
'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} h4, {$this->main_css_element} h1.et_pb_module_header, {$this->main_css_element} h2.et_pb_module_header, {$this->main_css_element} h3.et_pb_module_header, {$this->main_css_element} h5.et_pb_module_header, {$this->main_css_element} h6.et_pb_module_header",
'important' => 'plugin_only',
),
'header_level' => array(
'default' => 'h4',
),
),
'body' => array(
'label' => esc_html__( 'Body', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} *",
),
),
),
'background' => array(
'settings' => array(
'color' => 'alpha',
),
),
'custom_margin_padding' => array(
'css' => array(
'important' => 'all',
),
),
'max_width' => array(
'css' => array(
'module_alignment' => '%%order_class%%.et_pb_team_member.et_pb_module',
),
),
'text' => array(),
'filters' => array(
'css' => array(
'main' => '%%order_class%%',
),
'child_filters_target' => array(
'tab_slug' => 'advanced',
'toggle_slug' => 'image',
),
),
'image' => array(
'css' => array(
'main' => '%%order_class%% .et_pb_team_member_image',
),
),
);
$this->custom_css_options = array(
'member_image' => array(
'label' => esc_html__( 'Member Image', 'et_builder' ),
'selector' => '.et_pb_team_member_image',
),
'member_description' => array(
'label' => esc_html__( 'Member Description', 'et_builder' ),
'selector' => '.et_pb_team_member_description',
),
'title' => array(
'label' => esc_html__( 'Title', 'et_builder' ),
'selector' => '.et_pb_team_member_description h4',
),
'member_position' => array(
'label' => esc_html__( 'Member Position', 'et_builder' ),
'selector' => '.et_pb_member_position',
),
'member_social_links' => array(
'label' => esc_html__( 'Member Social Links', 'et_builder' ),
'selector' => '.et_pb_member_social_links',
),
);
}
function get_fields() {
$fields = array(
'name' => array(
'label' => esc_html__( 'Name', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'description' => esc_html__( 'Input the name of the person', 'et_builder' ),
'toggle_slug' => 'main_content',
),
'position' => array(
'label' => esc_html__( 'Position', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'description' => esc_html__( "Input the person's position.", 'et_builder' ),
'toggle_slug' => 'main_content',
),
'image_url' => array(
'label' => esc_html__( 'Image URL', 'et_builder' ),
'type' => 'upload',
'option_category' => 'basic_option',
'upload_button_text' => esc_attr__( 'Upload an image', 'et_builder' ),
'choose_text' => esc_attr__( 'Choose an Image', 'et_builder' ),
'update_text' => esc_attr__( 'Set As Image', 'et_builder' ),
'description' => esc_html__( 'Upload your desired image, or type in the URL to the image you would like to display.', 'et_builder' ),
'toggle_slug' => 'image',
),
'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 the value of your text. If you are working with a dark background, then your text should be set to light. If you are working with a light background, then your text should be dark.', 'et_builder' ),
),
'facebook_url' => array(
'label' => esc_html__( 'Facebook Profile Url', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'description' => esc_html__( 'Input Facebook Profile Url.', 'et_builder' ),
'toggle_slug' => 'main_content',
),
'twitter_url' => array(
'label' => esc_html__( 'Twitter Profile Url', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'description' => esc_html__( 'Input Twitter Profile Url', 'et_builder' ),
'toggle_slug' => 'main_content',
),
'google_url' => array(
'label' => esc_html__( 'Google+ Profile Url', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'description' => esc_html__( 'Input Google+ Profile Url', 'et_builder' ),
'toggle_slug' => 'main_content',
),
'linkedin_url' => array(
'label' => esc_html__( 'LinkedIn Profile Url', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'description' => esc_html__( 'Input LinkedIn Profile Url', 'et_builder' ),
'toggle_slug' => 'main_content',
),
'content_new' => array(
'label' => esc_html__( 'Description', 'et_builder' ),
'type' => 'tiny_mce',
'option_category' => 'basic_option',
'description' => esc_html__( 'Input the main text content for your module here.', 'et_builder' ),
'toggle_slug' => 'main_content',
),
'icon_color' => array(
'label' => esc_html__( 'Icon Color', 'et_builder' ),
'type' => 'color-alpha',
'custom_color' => true,
'tab_slug' => 'advanced',
'toggle_slug' => 'icon',
),
'icon_hover_color' => array(
'label' => esc_html__( 'Icon Hover 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',
),
);
$fields = array_merge( $fields, ET_Builder_Module_Fields_Factory::get( 'BoxShadow' )->get_fields( array(
'suffix' => '_image',
'label' => esc_html__( 'Image Box Shadow', 'et_builder' ),
'option_category' => 'layout',
'tab_slug' => 'advanced',
'toggle_slug' => 'image',
) ) );
return $fields;
}
function shortcode_callback( $atts, $content = null, $function_name ) {
$module_id = $this->shortcode_atts['module_id'];
$module_class = $this->shortcode_atts['module_class'];
$name = $this->shortcode_atts['name'];
$position = $this->shortcode_atts['position'];
$image_url = $this->shortcode_atts['image_url'];
$animation = $this->shortcode_atts['animation'];
$facebook_url = $this->shortcode_atts['facebook_url'];
$twitter_url = $this->shortcode_atts['twitter_url'];
$google_url = $this->shortcode_atts['google_url'];
$linkedin_url = $this->shortcode_atts['linkedin_url'];
$background_layout = $this->shortcode_atts['background_layout'];
$icon_color = $this->shortcode_atts['icon_color'];
$icon_hover_color = $this->shortcode_atts['icon_hover_color'];
$header_level = $this->shortcode_atts['header_level'];
$module_class = ET_Builder_Element::add_module_order_class( $module_class, $function_name );
$image = $social_links = '';
if ( '' !== $icon_color ) {
ET_Builder_Element::set_style( $function_name, array(
'selector' => '%%order_class%% .et_pb_member_social_links a',
'declaration' => sprintf(
'color: %1$s !important;',
esc_html( $icon_color )
),
) );
}
if ( '' !== $icon_hover_color ) {
ET_Builder_Element::set_style( $function_name, array(
'selector' => '%%order_class%% .et_pb_member_social_links a:hover',
'declaration' => sprintf(
'color: %1$s !important;',
esc_html( $icon_hover_color )
),
) );
}
if ( '' !== $facebook_url ) {
$social_links .= sprintf(
'<li><a href="%1$s" class="et_pb_font_icon et_pb_facebook_icon"><span>%2$s</span></a></li>',
esc_url( $facebook_url ),
esc_html__( 'Facebook', 'et_builder' )
);
}
if ( '' !== $twitter_url ) {
$social_links .= sprintf(
'<li><a href="%1$s" class="et_pb_font_icon et_pb_twitter_icon"><span>%2$s</span></a></li>',
esc_url( $twitter_url ),
esc_html__( 'Twitter', 'et_builder' )
);
}
if ( '' !== $google_url ) {
$social_links .= sprintf(
'<li><a href="%1$s" class="et_pb_font_icon et_pb_google_icon"><span>%2$s</span></a></li>',
esc_url( $google_url ),
esc_html__( 'Google+', 'et_builder' )
);
}
if ( '' !== $linkedin_url ) {
$social_links .= sprintf(
'<li><a href="%1$s" class="et_pb_font_icon et_pb_linkedin_icon"><span>%2$s</span></a></li>',
esc_url( $linkedin_url ),
esc_html__( 'LinkedIn', 'et_builder' )
);
}
if ( '' !== $social_links ) {
$social_links = sprintf( '<ul class="et_pb_member_social_links">%1$s</ul>', $social_links );
}
// Added for backward compatibility
if ( empty( $animation ) ) {
$animation = 'top';
}
if ( '' !== $image_url ) {
// Images: Add CSS Filters and Mix Blend Mode rules (if set)
if ( array_key_exists( 'image', $this->advanced_options ) && array_key_exists( 'css', $this->advanced_options['image'] ) ) {
$generate_css_filters_image = $this->generate_css_filters(
$function_name,
'child_',
self::$data_utils->array_get( $this->advanced_options['image']['css'], 'main', '%%order_class%%' )
);
}
$image_pathinfo = pathinfo( $image_url );
$is_image_svg = isset( $image_pathinfo['extension'] ) ? 'svg' === $image_pathinfo['extension'] : false;
$image = sprintf(
'<div class="et_pb_team_member_image et-waypoint%3$s%4$s%5$s">
<img src="%1$s" alt="%2$s" />
</div>',
esc_url( $image_url ),
esc_attr( $name ),
esc_attr( " et_pb_animation_{$animation}" ),
$generate_css_filters_image,
$is_image_svg ? esc_attr( " et-svg" ) : ''
);
}
$video_background = $this->video_background();
$parallax_image_background = $this->get_parallax_image_background();
$output = sprintf(
'<div%3$s class="et_pb_module et_pb_team_member%4$s%9$s%10$s%12$s et_pb_bg_layout_%8$s clearfix%14$s">
%13$s
%11$s
%2$s
<div class="et_pb_team_member_description">
%5$s
%6$s
%1$s
%7$s
</div> <!-- .et_pb_team_member_description -->
</div> <!-- .et_pb_team_member -->',
$this->shortcode_content,
( '' !== $image ? $image : '' ),
( '' !== $module_id ? sprintf( ' id="%1$s"', esc_attr( $module_id ) ) : '' ),
( '' !== $module_class ? sprintf( ' %1$s', esc_attr( $module_class ) ) : '' ),
( '' !== $name ? sprintf( '<%1$s class="et_pb_module_header">%2$s</%1$s>', et_pb_process_header_level( $header_level, 'h4' ), esc_html( $name ) ) : '' ),
( '' !== $position ? sprintf( '<p class="et_pb_member_position">%1$s</p>', esc_html( $position ) ) : '' ),
$social_links,
$background_layout,
( '' === $image ? ' et_pb_team_member_no_image' : '' ),
'' !== $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_team_member_image', self::get_module_order_class( $function_name ) );
self::set_style( $function_name, $boxShadow->get_style(
$selector,
$this->shortcode_atts,
array( 'suffix' => '_image' )
) );
parent::process_box_shadow( $function_name );
}
protected function _add_additional_border_fields() {
parent::_add_additional_border_fields();
$suffix = 'image';
$tab_slug = 'advanced';
$toggle_slug = 'image';
$this->_additional_fields_options = array_merge(
$this->_additional_fields_options,
ET_Builder_Module_Fields_Factory::get( 'Border' )->get_fields( array(
'suffix' => "_{$suffix}",
'label_prefix' => esc_html__( 'Image', 'et_builder' ),
'tab_slug' => $tab_slug,
'toggle_slug' => $toggle_slug,
) )
);
$this->advanced_options["border_{$suffix}"]["border_radii_{$suffix}"] = $this->_additional_fields_options["border_radii_{$suffix}"];
$this->advanced_options["border_{$suffix}"]["border_styles_{$suffix}"] = $this->_additional_fields_options["border_styles_{$suffix}"];
$this->advanced_options["border_{$suffix}"]['css'] = array(
'main' => array(
'border_radii' => "{$this->main_css_element} .et_pb_team_member_image",
'border_styles' => "{$this->main_css_element} .et_pb_team_member_image",
)
);
}
function process_advanced_border_options( $function_name ) {
parent::process_advanced_border_options( $function_name );
$suffix = 'image';
/**
* @var ET_Builder_Module_Field_Border $border_field
*/
$border_field = ET_Builder_Module_Fields_Factory::get( 'Border' );
$css_selector = ! empty( $this->advanced_options["border_{$suffix}"]['css']['main']['border_radii'] ) ? $this->advanced_options["border_{$suffix}"]['css']['main']['border_radii'] : $this->main_css_element;
self::set_style( $function_name, array(
'selector' => $css_selector,
'declaration' => $border_field->get_radii_style( $this->shortcode_atts, $this->advanced_options, "_{$suffix}" ),
'priority' => $this->_style_priority,
) );
$css_selector = ! empty( $this->advanced_options["border_{$suffix}"]['css']['main']['border_styles'] ) ? $this->advanced_options["border_{$suffix}"]['css']['main']['border_styles'] : $this->main_css_element;
self::set_style( $function_name, array(
'selector' => $css_selector,
'declaration' => $border_field->get_borders_style( $this->shortcode_atts, $this->advanced_options, "_{$suffix}" ),
'priority' => $this->_style_priority,
) );
}
}
new ET_Builder_Module_Team_Member;