HEX
Server: Apache
System: Linux webd001.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: mciraet (192513)
PHP: 8.2.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/mciraet/www/wp-content/plugins/movedo-extension/shortcodes/movedo_slogan.php
<?php
/**
 * Slogan Shortcode
 */

if( !function_exists( 'movedo_ext_vce_slogan_shortcode' ) ) {

	function movedo_ext_vce_slogan_shortcode( $atts, $content ) {

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

		extract(
			shortcode_atts(
				array(
					'title' => '',
					'heading_tag' => 'h2',
					'heading' => 'h2',
					'custom_font_family' => '',
					'gradient_color' => '',
					'gradient_color_1' => 'primary-1',
					'gradient_color_2' => 'primary-2',
					'increase_heading' => '100',
					'increase_heading_reset' => '',
					'line_type' => 'no-line',
					'line_width' => '50',
					'line_height' => '2',
					'line_color' => 'primary-1',
					'subtitle' => '',
					'button_text' => '',
					'button_link' => '',
					'button_type' => 'simple',
					'button_size' => 'medium',
					'button_color' => 'primary-1',
					'button_hover_color' => 'black',
					'button_line_color' => 'primary-1',
					'button_gradient_color_1' => 'primary-1',
					'button_gradient_color_2' => 'primary-2',
					'button_shape' => 'square',
					'button_shadow' => '',
					'button_class' => '',
					'button_id' => '',
					'btn_add_icon' => '',
					'btn_icon_library' => 'fontawesome',
					'btn_icon_fontawesome' => 'fa fa-adjust',
					'btn_icon_openiconic' => 'vc-oi vc-oi-dial',
					'btn_icon_typicons' => 'typcn typcn-adjust-brightness',
					'btn_icon_entypo' => 'entypo-icon entypo-icon-note',
					'btn_icon_linecons' => 'vc_li vc_li-heart',
					'btn_icon_simplelineicons' => 'smp-icon-user',
					'btn_icon_etlineicons' => 'et-icon-mobile',
					'button2_text' => '',
					'button2_link' => '',
					'button2_type' => 'simple',
					'button2_size' => 'medium',
					'button2_color' => 'primary-1',
					'button2_hover_color' => 'black',
					'button2_line_color' => 'primary-1',
					'button2_gradient_color_1' => 'primary-1',
					'button2_gradient_color_2' => 'primary-2',
					'button2_shape' => 'square',
					'button2_shadow' => '',
					'button2_class' => '',
					'button2_id' => '',
					'btn2_add_icon' => '',
					'btn2_icon_library' => 'fontawesome',
					'btn2_icon_fontawesome' => 'fa fa-adjust',
					'btn2_icon_openiconic' => 'vc-oi vc-oi-dial',
					'btn2_icon_typicons' => 'typcn typcn-adjust-brightness',
					'btn2_icon_entypo' => 'entypo-icon entypo-icon-note',
					'btn2_icon_linecons' => 'vc_li vc_li-heart',
					'btn2_icon_simplelineicons' => 'smp-icon-user',
					'btn2_icon_etlineicons' => 'et-icon-mobile',
					'text_style' => 'none',
					'align' => 'left',
					'animation' => '',
					'animation_delay' => '200',
					'animation_duration' => 'normal',
					'margin_bottom' => '',
					'el_class' => '',
				),
				$atts
			)
		);

		//Title
		if ( !empty( $title ) ) {
			//Title Classes
			$title_classes = array( 'grve-slogan-title' );

			array_push( $title_classes, 'grve-align-' . $align );
			array_push( $title_classes, 'grve-' . $heading );

			if ( !empty( $custom_font_family ) ) {
				array_push( $title_classes, 'grve-' . $custom_font_family );
			}

			if( '100' != $increase_heading ){
				if( !empty( $increase_heading_reset ) ) {
					$title_classes = movedo_ext_vce_increase_heading_reset( $increase_heading_reset, $title_classes );
				}
				array_push( $title_classes, 'grve-increase-heading' );
				array_push( $title_classes, 'grve-heading-' . $increase_heading );
			}

			if ( !empty( $gradient_color ) ) {
				$uid = uniqid();
				array_push( $title_classes, 'grve-title-gradient' );
				array_push( $title_classes, 'grve-title-' . $uid );

				$colors = array();
				if ( function_exists( 'movedo_grve_get_color_array' ) ) {
					$colors = movedo_grve_get_color_array();
				}

				$gradient_color_1 = movedo_ext_vce_array_value( $colors, $gradient_color_1, '#000000');
				$gradient_color_2 = movedo_ext_vce_array_value( $colors, $gradient_color_2, '#000000');

				$gradient_css = array();
				$gradient_css[] = 'color: ' . esc_attr( $gradient_color_1 );
				$gradient_css[] = 'background-image: -moz-linear-gradient(-45deg, ' . esc_attr( $gradient_color_1 ) . ' 0%, ' . esc_attr( $gradient_color_2 ) . ' 100%)';
				$gradient_css[] = 'background-image: -webkit-linear-gradient(-45deg, ' . esc_attr( $gradient_color_1 ) . ' 0%, ' . esc_attr( $gradient_color_2 ) . ' 100%)';
				$gradient_css[] = 'background-image: linear-gradient(135deg, ' . esc_attr( $gradient_color_1 ) . ' 0%, ' . esc_attr( $gradient_color_2 ) . ' 100%)';

				$output .= '<style type="text/css">';
				$output .= '.grve-title-gradient.grve-title-' . $uid . ' > span,';
				$output .= '.grve-title-gradient.grve-title-' . $uid . ' .grve-clipping-content > span {';
				$output .= implode( ';', $gradient_css ) . ';';
				$output .= '}';
				$output .= '</style>';
			}

			$title_class_string = implode( ' ', $title_classes );
		}

		//Slogan
		$slogan_classes = array( 'grve-element', 'grve-slogan', 'grve-align-' . $align );

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

		$slogan_class_string = implode( ' ', $slogan_classes );

		// Paragraph
		if ( 'none' != $text_style ) {
			$text_style_class = 'grve-' .$text_style;
		}

		//First Button
		$button1_options = array(
			'button_text'  => $button_text,
			'button_link'  => $button_link,
			'button_type'  => $button_type,
			'button_size'  => $button_size,
			'button_color' => $button_color,
			'button_hover_color' => $button_hover_color,
			'button_line_color' => $button_line_color,
			'button_gradient_color_1' => $button_gradient_color_1,
			'button_gradient_color_2' => $button_gradient_color_2,
			'button_shape' => $button_shape,
			'button_shadow' => $button_shadow,
			'button_class' => $button_class,
			'button_id' => $button_id,
			'btn_add_icon' => $btn_add_icon,
			'btn_icon_library' => $btn_icon_library,
			'btn_icon_fontawesome' => $btn_icon_fontawesome,
			'btn_icon_openiconic' => $btn_icon_openiconic,
			'btn_icon_typicons' => $btn_icon_typicons,
			'btn_icon_entypo' => $btn_icon_entypo,
			'btn_icon_linecons' => $btn_icon_linecons,
			'btn_icon_simplelineicons' => $btn_icon_simplelineicons,
			'btn_icon_etlineicons' => $btn_icon_etlineicons,
		);
		$button1 = movedo_ext_vce_get_button( $button1_options );
		//Second Button
		$button2_options = array(
			'button_text'  => $button2_text,
			'button_link'  => $button2_link,
			'button_type'  => $button2_type,
			'button_size'  => $button2_size,
			'button_color' => $button2_color,
			'button_hover_color' => $button2_hover_color,
			'button_line_color' => $button2_line_color,
			'button_gradient_color_1' => $button2_gradient_color_1,
			'button_gradient_color_2' => $button2_gradient_color_2,
			'button_shape' => $button2_shape,
			'button_shadow' => $button2_shadow,
			'button_class' => $button2_class,
			'button_id' => $button2_id,
			'btn_add_icon' => $btn2_add_icon,
			'btn_icon_library' => $btn2_icon_library,
			'btn_icon_fontawesome' => $btn2_icon_fontawesome,
			'btn_icon_openiconic' => $btn2_icon_openiconic,
			'btn_icon_typicons' => $btn2_icon_typicons,
			'btn_icon_entypo' => $btn2_icon_entypo,
			'btn_icon_linecons' => $btn2_icon_linecons,
			'btn_icon_simplelineicons' => $btn2_icon_simplelineicons,
			'btn_icon_etlineicons' => $btn2_icon_etlineicons,
		);
		$button2 = movedo_ext_vce_get_button( $button2_options );

		$style = movedo_ext_vce_build_margin_bottom_style( $margin_bottom );

		$output .= '<div class="' . esc_attr( $slogan_class_string ) . '" style="' . $style. '"' . $data . '>';
		if ( !empty( $subtitle ) ) {
			$output .= '<div class="grve-subtitle">' . $subtitle . '</div>';
		}
		if ( !empty( $title ) ) {
			$output .= '<' . tag_escape( $heading_tag ) . ' class="' . esc_attr( $title_class_string ) . '">';
			$output .= '<span>' . $title;
			if( 'line' == $line_type ) {
				$line_style = '';
				$line_style .= 'width: '.(preg_match('/(px|em|\%|pt|cm)$/', $line_width) ? $line_width : $line_width.'px').';';
				$line_style .= 'height: '. $line_height. 'px;';
				$output .=   '<span class="grve-title-line grve-bg-' . esc_attr( $line_color ) . '" style="' . esc_attr( $line_style ) . '"></span>';
			}
			$output .= '</span>';
			$output .= '</' . tag_escape( $heading_tag ) . '>';
		}
		if ( !empty( $content ) ) {
			$output .= '  <p class="' . esc_attr( $text_style_class ) . '">' . movedo_ext_vce_unautop( $content ) . '</p>';
		}

		if ( !empty( $button1 ) || !empty( $button2 ) ) {
			$output .= '<div class="grve-btn-wrapper">';
			$output .= $button1;
			$output .= $button2;
			$output .= '</div>';
		}
		$output .= '</div>';

		return $output;
	}
	add_shortcode( 'movedo_slogan', 'movedo_ext_vce_slogan_shortcode' );

}

/**
 * Add shortcode to Visual Composer
 */

if( !function_exists( 'movedo_ext_vce_slogan_shortcode_params' ) ) {
	function movedo_ext_vce_slogan_shortcode_params( $tag ) {

		$movedo_ext_vce_slogan_shortcode_btn1_params = movedo_ext_vce_get_button_params('first');
		$movedo_ext_vce_slogan_shortcode_btn2_params = movedo_ext_vce_get_button_params('second', '2');
		$movedo_ext_vce_slogan_shortcode_params = array_merge(
			array(
				array(
					"type" => "textfield",
					"heading" => esc_html__( "Title", "movedo-extension" ),
					"param_name" => "title",
					"value" => "Sample Title",
					"description" => esc_html__( "Enter your title here.", "movedo-extension" ),
					"save_always" => true,
					"admin_label" => true,
				),
				movedo_ext_vce_get_heading_tag( "h2" ),
				movedo_ext_vce_get_heading( "h2" ),
				movedo_ext_vce_get_heading_increase(),
				movedo_ext_vce_get_heading_increase_reset(),
				movedo_ext_vce_get_custom_font_family(),
				movedo_ext_vce_get_gradient_color(),
				movedo_ext_vce_get_gradient_color_1(),
				movedo_ext_vce_get_gradient_color_2(),
				array(
					"type" => "dropdown",
					"heading" => esc_html__( "Line type", "movedo-extension" ),
					"param_name" => "line_type",
					"value" => array(
						esc_html__( "No Line", "movedo-extension" ) => 'no-line',
						esc_html__( "With Line", "movedo-extension" ) => 'line',
					),
					"description" => esc_html__( "Line Type of the title.", "movedo-extension" ),
				),
				array(
					"type" => "textfield",
					"heading" => esc_html__( "Line Width", "movedo-extension" ),
					"param_name" => "line_width",
					"value" => "50",
					"description" => esc_html__( "Enter the width for your line (Note: CSS measurement units allowed).", "movedo-extension" ),
					"dependency" => array( 'element' => "line_type", 'value' => array( 'line' ) ),
				),
				array(
					"type" => "dropdown",
					"heading" => esc_html__( "Line Height", "movedo-extension" ),
					"param_name" => "line_height",
					"value" => array(
						'1' => '1',
						'2' => '2',
						'3' => '3',
						'4' => '4',
						'5' => '5',
						'6' => '6',
						'7' => '7',
						'8' => '8',
						'9' => '9',
						'10' => '10',
					),
					"std" => '2',
					"description" => esc_html__( "Enter the hight for your line in px.", "movedo-extension" ),
					"dependency" => array( 'element' => "line_type", 'value' => array( 'line' ) ),
				),
				array(
					"type" => "dropdown",
					"heading" => esc_html__( "Line Color", "movedo-extension" ),
					"param_name" => "line_color",
					"param_holder_class" => "grve-colored-dropdown",
					"value" => array(
						esc_html__( "Primary 1", "movedo-extension" ) => 'primary-1',
						esc_html__( "Primary 2", "movedo-extension" ) => 'primary-2',
						esc_html__( "Primary 3", "movedo-extension" ) => 'primary-3',
						esc_html__( "Primary 4", "movedo-extension" ) => 'primary-4',
						esc_html__( "Primary 5", "movedo-extension" ) => 'primary-5',
						esc_html__( "Primary 6", "movedo-extension" ) => 'primary-6',
						esc_html__( "Green", "movedo-extension" ) => 'green',
						esc_html__( "Orange", "movedo-extension" ) => 'orange',
						esc_html__( "Red", "movedo-extension" ) => 'red',
						esc_html__( "Blue", "movedo-extension" ) => 'blue',
						esc_html__( "Aqua", "movedo-extension" ) => 'aqua',
						esc_html__( "Purple", "movedo-extension" ) => 'purple',
						esc_html__( "Black", "movedo-extension" ) => 'black',
						esc_html__( "Grey", "movedo-extension" ) => 'grey',
						esc_html__( "White", "movedo-extension" ) => 'white',
					),
					"description" => esc_html__( "Color for the line.", "movedo-extension" ),
					"dependency" => array( 'element' => "line_type", 'value' => array( 'line' ) ),
				),
				array(
					"type" => "textfield",
					"heading" => esc_html__( "Sub-Title", "movedo-extension" ),
					"param_name" => "subtitle",
					"value" => "",
					"description" => esc_html__( "Enter your sub-title here.", "movedo-extension" ),
				),
				array(
					"type" => "textarea",
					"heading" => esc_html__( "Text", "movedo-extension" ),
					"param_name" => "content",
					"value" => "",
					"description" => esc_html__( "Type your text.", "movedo-extension" ),
				),
				array(
					"type" => "dropdown",
					"heading" => esc_html__( "Text Style", "movedo-extension" ),
					"param_name" => "text_style",
					"value" => array(
						esc_html__( "None", "movedo-extension" ) => '',
						esc_html__( "Leader", "movedo-extension" ) => 'leader-text',
						esc_html__( "Subtitle", "movedo-extension" ) => 'subtitle',
					),
					"description" => 'Select your text style',
				),
				movedo_ext_vce_add_align(),
				movedo_ext_vce_add_animation(),
				movedo_ext_vce_add_animation_delay(),
				movedo_ext_vce_add_animation_duration(),
				movedo_ext_vce_add_margin_bottom(),
				movedo_ext_vce_add_el_class(),
			),
			$movedo_ext_vce_slogan_shortcode_btn1_params,
			$movedo_ext_vce_slogan_shortcode_btn2_params
		);

		return array(
			"name" => esc_html__( "Slogan", "movedo-extension" ),
			"description" => esc_html__( "Create easily appealing slogans", "movedo-extension" ),
			"base" => $tag,
			"class" => "",
			"icon"      => "icon-wpb-grve-slogan",
			"category" => esc_html__( "Content", "js_composer" ),
			"params" => $movedo_ext_vce_slogan_shortcode_params,
		);
	}
}

if( function_exists( 'vc_lean_map' ) ) {
	vc_lean_map( 'movedo_slogan', 'movedo_ext_vce_slogan_shortcode_params' );
} else if( function_exists( 'vc_map' ) ) {
	$attributes = movedo_ext_vce_slogan_shortcode_params( 'movedo_slogan' );
	vc_map( $attributes );
}

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