Current File : /home/mdkeenpw/public_html/wp-content/themes/globallogistics/front-page/section-contacts.php
<div class="front_page_section front_page_section_contacts<?php
	$globallogistics_scheme = globallogistics_get_theme_option( 'front_page_contacts_scheme' );
	if ( ! empty( $globallogistics_scheme ) && ! globallogistics_is_inherit( $globallogistics_scheme ) ) {
		echo ' scheme_' . esc_attr( $globallogistics_scheme );
	}
	echo ' front_page_section_paddings_' . esc_attr( globallogistics_get_theme_option( 'front_page_contacts_paddings' ) );
	if ( globallogistics_get_theme_option( 'front_page_contacts_stack' ) ) {
		echo ' sc_stack_section_on';
	}
?>"
		<?php
		$globallogistics_css      = '';
		$globallogistics_bg_image = globallogistics_get_theme_option( 'front_page_contacts_bg_image' );
		if ( ! empty( $globallogistics_bg_image ) ) {
			$globallogistics_css .= 'background-image: url(' . esc_url( globallogistics_get_attachment_url( $globallogistics_bg_image ) ) . ');';
		}
		if ( ! empty( $globallogistics_css ) ) {
			echo ' style="' . esc_attr( $globallogistics_css ) . '"';
		}
		?>
>
<?php
	// Add anchor
	$globallogistics_anchor_icon = globallogistics_get_theme_option( 'front_page_contacts_anchor_icon' );
	$globallogistics_anchor_text = globallogistics_get_theme_option( 'front_page_contacts_anchor_text' );
if ( ( ! empty( $globallogistics_anchor_icon ) || ! empty( $globallogistics_anchor_text ) ) && shortcode_exists( 'trx_sc_anchor' ) ) {
	echo do_shortcode(
		'[trx_sc_anchor id="front_page_section_contacts"'
									. ( ! empty( $globallogistics_anchor_icon ) ? ' icon="' . esc_attr( $globallogistics_anchor_icon ) . '"' : '' )
									. ( ! empty( $globallogistics_anchor_text ) ? ' title="' . esc_attr( $globallogistics_anchor_text ) . '"' : '' )
									. ']'
	);
}
?>
	<div class="front_page_section_inner front_page_section_contacts_inner
	<?php
	if ( globallogistics_get_theme_option( 'front_page_contacts_fullheight' ) ) {
		echo ' globallogistics-full-height sc_layouts_flex sc_layouts_columns_middle';
	}
	?>
			"
			<?php
			$globallogistics_css      = '';
			$globallogistics_bg_mask  = globallogistics_get_theme_option( 'front_page_contacts_bg_mask' );
			$globallogistics_bg_color_type = globallogistics_get_theme_option( 'front_page_contacts_bg_color_type' );
			if ( 'custom' == $globallogistics_bg_color_type ) {
				$globallogistics_bg_color = globallogistics_get_theme_option( 'front_page_contacts_bg_color' );
			} elseif ( 'scheme_bg_color' == $globallogistics_bg_color_type ) {
				$globallogistics_bg_color = globallogistics_get_scheme_color( 'bg_color', $globallogistics_scheme );
			} else {
				$globallogistics_bg_color = '';
			}
			if ( ! empty( $globallogistics_bg_color ) && $globallogistics_bg_mask > 0 ) {
				$globallogistics_css .= 'background-color: ' . esc_attr(
					1 == $globallogistics_bg_mask ? $globallogistics_bg_color : globallogistics_hex2rgba( $globallogistics_bg_color, $globallogistics_bg_mask )
				) . ';';
			}
			if ( ! empty( $globallogistics_css ) ) {
				echo ' style="' . esc_attr( $globallogistics_css ) . '"';
			}
			?>
	>
		<div class="front_page_section_content_wrap front_page_section_contacts_content_wrap content_wrap">
			<?php

			// Title and description
			$globallogistics_caption     = globallogistics_get_theme_option( 'front_page_contacts_caption' );
			$globallogistics_description = globallogistics_get_theme_option( 'front_page_contacts_description' );
			if ( ! empty( $globallogistics_caption ) || ! empty( $globallogistics_description ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
				// Caption
				if ( ! empty( $globallogistics_caption ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
					?>
					<h2 class="front_page_section_caption front_page_section_contacts_caption front_page_block_<?php echo ! empty( $globallogistics_caption ) ? 'filled' : 'empty'; ?>">
					<?php
						echo wp_kses( $globallogistics_caption, 'globallogistics_kses_content' );
					?>
					</h2>
					<?php
				}

				// Description
				if ( ! empty( $globallogistics_description ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
					?>
					<div class="front_page_section_description front_page_section_contacts_description front_page_block_<?php echo ! empty( $globallogistics_description ) ? 'filled' : 'empty'; ?>">
					<?php
						echo wp_kses( wpautop( $globallogistics_description ), 'globallogistics_kses_content' );
					?>
					</div>
					<?php
				}
			}

			// Content (text)
			$globallogistics_content = globallogistics_get_theme_option( 'front_page_contacts_content' );
			$globallogistics_layout  = globallogistics_get_theme_option( 'front_page_contacts_layout' );
			if ( 'columns' == $globallogistics_layout && ( ! empty( $globallogistics_content ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) ) {
				?>
				<div class="front_page_section_columns front_page_section_contacts_columns columns_wrap">
					<div class="column-1_3">
				<?php
			}

			if ( ( ! empty( $globallogistics_content ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) ) {
				?>
				<div class="front_page_section_content front_page_section_contacts_content front_page_block_<?php echo ! empty( $globallogistics_content ) ? 'filled' : 'empty'; ?>">
					<?php
					echo wp_kses( $globallogistics_content, 'globallogistics_kses_content' );
					?>
				</div>
				<?php
			}

			if ( 'columns' == $globallogistics_layout && ( ! empty( $globallogistics_content ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) ) {
				?>
				</div><div class="column-2_3">
				<?php
			}

			// Shortcode output
			$globallogistics_sc = globallogistics_get_theme_option( 'front_page_contacts_shortcode' );
			if ( ! empty( $globallogistics_sc ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
				?>
				<div class="front_page_section_output front_page_section_contacts_output front_page_block_<?php echo ! empty( $globallogistics_sc ) ? 'filled' : 'empty'; ?>">
					<?php
					globallogistics_show_layout( do_shortcode( $globallogistics_sc ) );
					?>
				</div>
				<?php
			}

			if ( 'columns' == $globallogistics_layout && ( ! empty( $globallogistics_content ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) ) {
				?>
				</div></div>
				<?php
			}
			?>

		</div>
	</div>
</div>