name = esc_html__( 'Person', 'et_builder' ); $this->plural = esc_html__( 'Persons', 'et_builder' ); $this->slug = 'et_pb_team_member'; $this->vb_support = 'on'; $this->main_css_element = '%%order_class%%.et_pb_team_member'; $this->settings_modal_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_fields = 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', ), ), 'borders' => array( 'default' => array(), 'image' => array( '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", ), ), 'label_prefix' => esc_html__( 'Image', 'et_builder' ), 'tab_slug' => 'advanced', 'toggle_slug' => 'image', ), ), 'box_shadow' => array( 'default' => array(), 'image' => array( 'label' => esc_html__( 'Image Box Shadow', 'et_builder' ), 'option_category' => 'layout', 'tab_slug' => 'advanced', 'toggle_slug' => 'image', 'css' => array( 'main' => '%%order_class%% .et_pb_team_member_image', 'custom_style' => true, ), 'default_on_fronts' => array( 'color' => '', 'position' => '', ), ), ), '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( 'use_background_layout' => true, 'options' => array( 'background_layout' => array( 'default' => 'light', 'hover' => 'tabs', ), ), 'css' => array( 'main' => implode(', ', array( '%%order_class%% .et_pb_module_header', '%%order_class%% .et_pb_member_position', '%%order_class%% .et_pb_team_member_description p', )) ) ), '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', ), ), 'button' => false, ); $this->custom_css_fields = 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', ), ); $this->help_videos = array( array( 'id' => esc_html( 'rrKmaQ0n7Hw' ), 'name' => esc_html__( 'An introduction to the Person module', 'et_builder' ), ), ); } 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', 'dynamic_content' => 'text', ), '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', 'dynamic_content' => 'text', ), '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', 'dynamic_content' => 'image', ), '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', 'dynamic_content' => 'url', ), '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', 'dynamic_content' => 'url', ), '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', 'dynamic_content' => 'url', ), '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', 'dynamic_content' => 'url', ), 'content' => 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', 'dynamic_content' => 'text', ), 'icon_color' => array( 'label' => esc_html__( 'Icon Color', 'et_builder' ), 'type' => 'color-alpha', 'custom_color' => true, 'tab_slug' => 'advanced', 'toggle_slug' => 'icon', 'hover' => 'tabs', ), ); return $fields; } public function get_transition_fields_css_props() { $fields = parent::get_transition_fields_css_props(); $fields['icon_color'] = array( 'color' => '%%order_class%% .et_pb_member_social_links a' ); return $fields; } function render( $attrs, $content = null, $render_slug ) { $name = $this->_esc_attr( 'name' ); $position = $this->_esc_attr( 'position' ); $image_url = $this->props['image_url']; $animation = $this->props['animation']; $facebook_url = $this->props['facebook_url']; $twitter_url = $this->props['twitter_url']; $google_url = $this->props['google_url']; $linkedin_url = $this->props['linkedin_url']; $background_layout = $this->props['background_layout']; $background_layout_hover = et_pb_hover_options()->get_value( 'background_layout', $this->props, 'light' ); $background_layout_hover_enabled = et_pb_hover_options()->is_enabled( 'background_layout', $this->props ); $icon_color = $this->props['icon_color']; $header_level = $this->props['header_level']; $hover = et_pb_hover_options(); $image = $social_links = ''; if ( '' !== $icon_color ) { ET_Builder_Element::set_style( $render_slug, array( 'selector' => '%%order_class%% .et_pb_member_social_links a', 'declaration' => sprintf( 'color: %1$s !important;', esc_html( $icon_color ) ), ) ); } if ( $hover->is_enabled( 'icon_color', $this->props ) && $hover->get_value( 'icon_color', $this->props ) ) { ET_Builder_Element::set_style( $render_slug, array( 'selector' => '%%order_class%% .et_pb_member_social_links a:hover', 'declaration' => sprintf( 'color: %1$s !important;', esc_html( $hover->get_value( 'icon_color', $this->props ) ) ), ) ); } if ( '' !== $facebook_url ) { $social_links .= sprintf( '
  • %2$s
  • ', esc_url( $facebook_url ), esc_html__( 'Facebook', 'et_builder' ) ); } if ( '' !== $twitter_url ) { $social_links .= sprintf( '
  • %2$s
  • ', esc_url( $twitter_url ), esc_html__( 'Twitter', 'et_builder' ) ); } if ( '' !== $google_url ) { $social_links .= sprintf( '
  • %2$s
  • ', esc_url( $google_url ), esc_html__( 'Google+', 'et_builder' ) ); } if ( '' !== $linkedin_url ) { $social_links .= sprintf( '
  • %2$s
  • ', esc_url( $linkedin_url ), esc_html__( 'LinkedIn', 'et_builder' ) ); } if ( '' !== $social_links ) { $social_links = sprintf( '', $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) $generate_css_filters_image = ''; if ( array_key_exists( 'image', $this->advanced_fields ) && array_key_exists( 'css', $this->advanced_fields['image'] ) ) { $generate_css_filters_image = $this->generate_css_filters( $render_slug, 'child_', self::$data_utils->array_get( $this->advanced_fields['image']['css'], 'main', '%%order_class%%' ) ); } $image_pathinfo = pathinfo( $image_url ); $is_image_svg = isset( $image_pathinfo['extension'] ) ? 'svg' === $image_pathinfo['extension'] : false; $image = sprintf( '
    %2$s
    ', esc_attr( $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(); // Module classnames $this->add_classname( array( "et_pb_bg_layout_{$background_layout}", 'clearfix', $this->get_text_orientation_classname() ) ); if ( '' === $image ) { $this->add_classname( 'et_pb_team_member_no_image' ); } $data_background_layout = ''; $data_background_layout_hover = ''; if ( $background_layout_hover_enabled ) { $data_background_layout = sprintf( ' data-background-layout="%1$s"', esc_attr( $background_layout ) ); $data_background_layout_hover = sprintf( ' data-background-layout-hover="%1$s"', esc_attr( $background_layout_hover ) ); } $output = sprintf( ' %9$s %8$s %2$s
    %5$s %6$s %1$s %7$s
    ', $this->content, ( '' !== $image ? $image : '' ), $this->module_id(), $this->module_classname( $render_slug ), ( '' !== $name ? sprintf( '<%1$s class="et_pb_module_header">%2$s', et_pb_process_header_level( $header_level, 'h4' ), et_core_esc_previously( $name ) ) : '' ), // #5 ( '' !== $position ? sprintf( '

    %1$s

    ', et_core_esc_previously( $position ) ) : '' ), $social_links, $video_background, $parallax_image_background, et_core_esc_previously( $data_background_layout ), // #10 et_core_esc_previously( $data_background_layout_hover ) ); return $output; } } new ET_Builder_Module_Team_Member;