HEX
Server: Apache/2.4.25
System: Linux ion14 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 (2019-02-19) x86_64
User: (10087)
PHP: 7.4.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,system, exec, shell_exec, passthru, popen, proc_open
Upload Files
File: /home/www/web115/wordpress/wp-content/plugins/grve-osmosis-vc-extension/shortcodes/grve_team.php
<?php
/**
 * Team Shortcode
 */

if( !function_exists( 'grve_team_shortcode' ) ) {

	function grve_team_shortcode( $attr, $content ) {

		$output = $data = $el_class = '';

		extract(
			shortcode_atts(
				array(
					'image' => '',
					'team_style' => '1',
					'image_mode' => '',
					'heading' => 'h6',
					'heading_tag' => '',
					'name' => '',
					'identity' => '',
					'social_mode' => 'text',
					'social_facebook' => '',
					'social_twitter' => '',
					'social_linkedin' => '',
					'social_instagram' => '',
					'email' => '',
					'link' => '',
					'zoom_effect' => 'in',
					'overlay_color' => 'dark',
					'overlay_opacity' => '60',
					'animation' => '',
					'animation_delay' => '200',
					'margin_bottom' => '',
					'el_class' => '',
				),
				$attr
			)
		);

		if ( !empty( $animation ) ) {
			$animation = 'grve-' .$animation;
		}
		
		if ( empty( $heading_tag ) ) {
			$heading_tag = $heading;
		}		

		if ( 'resize-large' == $image_mode ) {
			$image_size = 'large';
		} elseif ( 'resize-medium' == $image_mode ) {
			$image_size = 'medium';
		} else {
			$image_size = 'grve-image-small-square';
		}

		$team_style_classes = array( 'grve-image-hover' );

		array_push( $team_style_classes, 'grve-style-' . $team_style );
		array_push( $team_style_classes, 'grve-zoom-' . $zoom_effect);

		$team_style_string = implode( ' ', $team_style_classes );


		$style = grve_osmosis_vce_build_margin_bottom_style( $margin_bottom );

		if ( !empty( $image ) ) {
			$id = preg_replace('/[^\d]/', '', $image);
			$image_string = wp_get_attachment_image( $id, $image_size );
		} else {
			$image_src = GRVE_OSMOSIS_VC_EXT_PLUGIN_DIR_URL .'assets/images/empty/' . $image_size . '.jpg';
			$image_dimensions = '';
			$alt = "Empty Team";
			$image_string = '  <img src="' . esc_attr( $image_src ) . '" alt="' . esc_attr( $alt ) . '">';
		}

		if ( !empty( $link ) ){
			$href = vc_build_link( $link );
			$url = $href['url'];
			if ( !empty( $href['target'] ) ){
				$target = $href['target'];
			} else {
				$target= "_self";
			}
		} else {
			$url = "#";
			$target= "_self";
		}
		$target = trim( $target );

		$links = '';
		if( 'icon' == $social_mode ) {
			if ( !empty( $social_facebook ) ) {
				$links .= '<li><a href="' . esc_url( $social_facebook ) . '" target="_blank" rel="noopener noreferrer"><i class="fa fa-facebook"></i></a></li>';
			}
			if ( !empty( $social_twitter ) ) {
				$links .= '<li><a href="' . esc_url( $social_twitter ) . '" target="_blank" rel="noopener noreferrer"><i class="fab fa-x-twitter"></i></a></li>';
			}
			if ( !empty( $social_linkedin ) ) {
				$links .= '<li><a href="' . esc_url( $social_linkedin ) . '" target="_blank" rel="noopener noreferrer"><i class="fa fa-linkedin"></i></a></li>';
			}
			if ( !empty( $social_instagram ) ) {
				$links .= '<li><a href="' . esc_url( $social_instagram ) . '" target="_blank" rel="noopener noreferrer"><i class="fa fa-instagram"></i></a></li>';
			}
			if ( !empty( $email ) ) {
				$links .= '<li><a href="mailto:' . antispambot( $email ) . '"><i class="fa fa-envelope"></i></a></li>';
			}
		} else {
			if ( !empty( $social_facebook ) ) {
				$links .= '<li><a href="' . esc_url( $social_facebook ) . '" target="_blank" rel="noopener noreferrer">Facebook</a></li>';
			}
			if ( !empty( $social_twitter ) ) {
				$links .= '<li><a href="' . esc_url( $social_twitter ) . '" target="_blank" rel="noopener noreferrer">X</a></li>';
			}
			if ( !empty( $social_linkedin ) ) {
				$links .= '<li><a href="' . esc_url( $social_linkedin ) . '" target="_blank" rel="noopener noreferrer">Linkedin</a></li>';
			}
			if ( !empty( $social_instagram ) ) {
				$links .= '<li><a href="' . esc_url( $social_instagram ) . '" target="_blank" rel="noopener noreferrer">Instagram</a></li>';
			}
			if ( !empty( $email ) ) {
				$links .= '<li><a href="mailto:' . antispambot( $email ) . '">E-mail</a></li>';
			}
		}

		$team_classes = array( 'grve-element' );

		if ( !empty( $animation ) ) {
			array_push( $team_classes, 'grve-animated-item' );
			array_push( $team_classes, $animation);
			$data = ' data-delay="' . esc_attr( $animation_delay ) . '"';
		}
		if ( !empty( $el_class ) ) {
			array_push( $team_classes, $el_class);
		}

		$team_class_string = implode( ' ', $team_classes );


		ob_start();

		?>

		<div class="grve-team <?php echo esc_attr( $team_class_string ); ?>" style="<?php echo $style; ?>"<?php echo $data; ?>>
			<figure class="<?php echo esc_attr( $team_style_string ); ?>">
				<div class="grve-team-person grve-media grve-<?php echo esc_attr( $overlay_color ); ?>-overlay grve-opacity-<?php echo esc_attr( $overlay_opacity ); ?>">
					<?php echo $image_string; ?>
				</div>
				<figcaption>
					<div class="grve-team-description">
						<?php if ( !empty( $url ) && '#' != $url ) { ?>
						<a href="<?php echo esc_url( $url ); ?>" target="<?php echo esc_attr( $target ); ?>">
						<?php } ?>
						<<?php echo tag_escape( $heading_tag ); ?> class="grve-team-name grve-<?php echo esc_attr( $overlay_color ); ?> grve-<?php echo esc_attr( $heading ); ?>"><?php echo $name; ?></<?php echo tag_escape( $heading_tag ); ?>>
						<?php if ( !empty( $url ) && '#' != $url ) { ?>
						</a>
						<?php } ?>
						<small class="grve-team-identity grve-<?php echo esc_attr( $overlay_color ); ?>"><?php echo $identity; ?></small>
					</div>
					<?php if ( !empty( $links ) ) { ?>
					<div class="grve-team-social grve-team-social-<?php echo esc_attr( $social_mode ); ?> grve-<?php echo esc_attr( $overlay_color ); ?>">
						<ul>
							<?php echo $links; ?>
						</ul>
					</div>
					<?php } ?>
				</figcaption>
			</figure>
		</div>

		<?php

		return ob_get_clean();

	}
	add_shortcode( 'grve_team', 'grve_team_shortcode' );

}

/**
 * Add shortcode to Page Builder
 */

if( !function_exists( 'grve_osmosis_vce_team_shortcode_params' ) ) {
	function grve_osmosis_vce_team_shortcode_params( $tag ) {
		return array(
			"name" => __( "Team", "grve-osmosis-vc-extension" ),
			"description" => __( "Show your team members", "grve-osmosis-vc-extension" ),
			"base" => $tag,
			"class" => "",
			"icon"      => "icon-wpb-grve-team",
			"category" => __( "Content", "js_composer" ),
			"params" => array(
				array(
					"type" => "dropdown",
					"heading" => __( "Team style", "grve-osmosis-vc-extension" ),
					"param_name" => "team_style",
					"value" => array(
						__( "Style 1", "grve-osmosis-vc-extension" ) => '1',
						__( "Style 2", "grve-osmosis-vc-extension" ) => '2',
					),
					"description" => __( "Select your team style.", "grve-osmosis-vc-extension" ),
					"admin_label" => true,
				),
				array(
					"type" => "attach_image",
					"heading" => __( "Image", "grve-osmosis-vc-extension" ),
					"param_name" => "image",
					"value" => '',
					"description" => __( "Select an image.", "grve-osmosis-vc-extension" ),
				),
				array(
					"type" => "dropdown",
					"heading" => __( "Image Mode", "grve-osmosis-vc-extension" ),
					"param_name" => "image_mode",
					'value' => array(
						__( 'Auto Crop', 'grve-osmosis-vc-extension' ) => '',
						__( 'Resize ( Medium )', 'grve-osmosis-vc-extension' ) => 'resize-medium',
						__( 'Resize ( Large )', 'grve-osmosis-vc-extension' ) => 'resize-large',
					),
					"description" => __( "Select your team image mode.", "grve-osmosis-vc-extension" ),
				),
				array(
					"type" => "textfield",
					"heading" => __( "Name", "grve-osmosis-vc-extension" ),
					"param_name" => "name",
					"value" => "John Smith",
					"description" => __( "Enter your team name.", "grve-osmosis-vc-extension" ),
					"save_always" => true,
					"admin_label" => true,
				),
				array(
					"type" => "textfield",
					"heading" => __( "Identity", "grve-osmosis-vc-extension" ),
					"param_name" => "identity",
					"value" => "",
					"description" => __( "Enter your team identity/profession e.g: Designer", "grve-osmosis-vc-extension" ),
				),
				grve_osmosis_vce_get_heading('h6'),
				grve_osmosis_vce_get_heading_tag(),
				array(
					"type" => "dropdown",
					"heading" => __( "Social Mode", "grve-osmosis-vc-extension" ),
					"param_name" => "social_mode",
					'value' => array(
						__( 'Text', 'grve-osmosis-vc-extension' ) => 'text',
						__( 'Icons', 'grve-osmosis-vc-extension' ) => 'icon',
					),
					"description" => __( "Select your social mode.", "grve-osmosis-vc-extension" ),
				),
				array(
					"type" => "textfield",
					"heading" => __( "Facebook", "grve-osmosis-vc-extension" ),
					"param_name" => "social_facebook",
					"value" => "",
					"description" => __( "Enter facebook URL. Clear input if you don't want to display.", "grve-osmosis-vc-extension" ),
				),
				array(
					"type" => "textfield",
					"heading" => __( "Twitter", "grve-osmosis-vc-extension" ),
					"param_name" => "social_twitter",
					"value" => "",
					"description" => __( "Enter twitter URL. Clear input if you don't want to display.", "grve-osmosis-vc-extension" ),
				),
				array(
					"type" => "textfield",
					"heading" => __( "Linkedin", "grve-osmosis-vc-extension" ),
					"param_name" => "social_linkedin",
					"value" => "",
					"description" => __( "Enter linkedin URL. Clear input if you don't want to display.", "grve-osmosis-vc-extension" ),
				),
				array(
					"type" => "textfield",
					"heading" => __( "Instagram", "grve-osmosis-vc-extension" ),
					"param_name" => "social_instagram",
					"value" => "",
					"description" => __( "Enter Instagram URL. Clear input if you don't want to display.", "grve-osmosis-vc-extension" ),
				),
				array(
					"type" => "textfield",
					"heading" => __( "Email", "grve-osmosis-vc-extension" ),
					"param_name" => "email",
					"value" => "",
					"description" => __( "Enter your email. Clear input if you don't want to display.", "grve-osmosis-vc-extension" ),
				),
				array(
					"type" => "vc_link",
					"heading" => __( "Link", "grve-osmosis-vc-extension" ),
					"param_name" => "link",
					"value" => "",
					"description" => __( "Enter link.", "grve-osmosis-vc-extension" ),
				),
				array(
					"type" => "dropdown",
					"heading" => __( "Image Zoom Effect", "grve-osmosis-vc-extension" ),
					"param_name" => "zoom_effect",
					"value" => array(
						__( "Zoom In", "grve-osmosis-vc-extension" ) => 'in',
						__( "Zoom Out", "grve-osmosis-vc-extension" ) => 'out',
						__( "None", "grve-osmosis-vc-extension" ) => 'none',
					),
					"description" => __( "Choose the image zoom effect.", "grve-osmosis-vc-extension" ),
				),
				array(
					"type" => "dropdown",
					"heading" => __( "Overlay Color", "grve-osmosis-vc-extension" ),
					"param_name" => "overlay_color",
					"value" => array(
						__( "Dark", "grve-osmosis-vc-extension" ) => 'dark',
						__( "Light", "grve-osmosis-vc-extension" ) => 'light',
					),
					"description" => __( "Choose the image color overlay.", "grve-osmosis-vc-extension" ),
				),
				array(
					"type" => "dropdown",
					"heading" => __( "Overlay Opacity", "grve-osmosis-vc-extension" ),
					"param_name" => "overlay_opacity",
					"value" => array( '0', '10', '20', '30', '40', '50', '60', '70', '80', '90', '100' ),
					"std" => '80',
					"description" => __( "Choose the opacity for the overlay.", "grve-osmosis-vc-extension" ),
				),
				grve_osmosis_vce_add_animation(),
				grve_osmosis_vce_add_animation_delay(),
				grve_osmosis_vce_add_margin_bottom(),
				grve_osmosis_vce_add_el_class(),
			),
		);
	}
}

if( function_exists( 'vc_lean_map' ) ) {
	vc_lean_map( 'grve_team', 'grve_osmosis_vce_team_shortcode_params' );
} else if( function_exists( 'vc_map' ) ) {
	$attributes = grve_osmosis_vce_team_shortcode_params( 'grve_team' );
	vc_map( $attributes );
}

//Omit closing PHP tag to avoid accidental whitespace output errors.