<?php
/**
 * Footer elements.
 *
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! function_exists( 'shesha_construct_footer' ) ) {
	add_action( 'shesha_footer', 'shesha_construct_footer' );
	/**
	 * Build our footer.
	 *
	 */
	function shesha_construct_footer() {
		?>
		<footer class="site-info" itemtype="https://schema.org/WPFooter" itemscope="itemscope">
			<div class="inside-site-info <?php if ( 'full-width' !== shesha_get_setting( 'footer_inner_width' ) ) : ?>grid-container grid-parent<?php endif; ?>">
				<?php
				/**
				 * shesha_before_copyright hook.
				 *
				 *
				 * @hooked shesha_footer_bar - 15
				 */
				do_action( 'shesha_before_copyright' );
				?>
				<div class="copyright-bar">
					<?php
					/**
					 * shesha_credits hook.
					 *
					 *
					 * @hooked shesha_add_footer_info - 10
					 */
					do_action( 'shesha_credits' );
					?>
				</div>
			</div>
		</footer><!-- .site-info -->
		<?php
	}
}

if ( ! function_exists( 'shesha_footer_bar' ) ) {
	add_action( 'shesha_before_copyright', 'shesha_footer_bar', 15 );
	/**
	 * Build our footer bar
	 *
	 */
	function shesha_footer_bar() {
		if ( ! is_active_sidebar( 'footer-bar' ) ) {
			return;
		}
		?>
		<div class="footer-bar">
			<?php dynamic_sidebar( 'footer-bar' ); ?>
		</div>
		<?php
	}
}

if ( ! function_exists( 'shesha_add_footer_info' ) ) {
	add_action( 'shesha_credits', 'shesha_add_footer_info' );
	/**
	 * Add the copyright to the footer
	 *
	 */
	function shesha_add_footer_info() {
		$copyright = sprintf( '<span class="copyright">&copy; %1$s %2$s</span> &bull; %4$s <a href="%3$s" itemprop="url">%5$s</a>',
			date( 'Y' ),
			get_bloginfo( 'name' ),
			esc_url( SHESHA_THEME_URL ),
			_x( 'Powered by', 'WPKoi', 'shesha' ),
			__( 'WPKoi', 'shesha' )
		);

		echo apply_filters( 'shesha_copyright', $copyright ); // WPCS: XSS ok.
	}
}

/**
 * Build our individual footer widgets.
 * Displays a sample widget if no widget is found in the area.
 *
 *
 * @param int $widget_width The width class of our widget.
 * @param int $widget The ID of our widget.
 */
function shesha_do_footer_widget( $widget_width, $widget ) {
	$widget_width = apply_filters( "shesha_footer_widget_{$widget}_width", $widget_width );
	$tablet_widget_width = apply_filters( "shesha_footer_widget_{$widget}_tablet_width", '50' );
	?>
	<div class="footer-widget-<?php echo absint( $widget ); ?> grid-parent grid-<?php echo absint( $widget_width ); ?> tablet-grid-<?php echo absint( $tablet_widget_width ); ?> mobile-grid-100">
		<?php if ( ! dynamic_sidebar( 'footer-' . absint( $widget ) ) ) :
	        $current_user = wp_get_current_user();
	        if (user_can( $current_user, 'administrator' )) { ?>
			<aside class="widget inner-padding widget_text">
				<h4 class="widget-title"><?php esc_html_e( 'Footer Widget', 'shesha' );?></h4>
				<div class="textwidget">
					<p>
						<?php
						printf( // WPCS: XSS ok.
							/* translators: 1: admin URL */
							__( 'Replace this widget content by going to <a href="%1$s"><strong>Appearance / Widgets</strong></a> and dragging widgets into this widget area.', 'shesha' ),
							esc_url( admin_url( 'widgets.php' ) )
						);
						?>
					</p>
					<p>
						<?php
						printf( // WPCS: XSS ok.
							/* translators: 1: admin URL */
							__( 'To remove or choose the number of footer widgets, go to <a href="%1$s"><strong>Appearance / Customize / Layout / Footer Widgets</strong></a>.', 'shesha' ),
							esc_url( admin_url( 'customize.php' ) )
						);
						?>
					</p>
				</div>
			</aside>
		<?php } endif; ?>
	</div>
	<?php
}

if ( ! function_exists( 'shesha_construct_footer_widgets' ) ) {
	add_action( 'shesha_footer', 'shesha_construct_footer_widgets', 5 );
	/**
	 * Build our footer widgets.
	 *
	 */
	function shesha_construct_footer_widgets() {
		// Get how many widgets to show.
		$widgets = shesha_get_footer_widgets();

		if ( ! empty( $widgets ) && 0 !== $widgets ) :

			// Set up the widget width.
			$widget_width = '';
			if ( $widgets == 1 ) {
				$widget_width = '100';
			}

			if ( $widgets == 2 ) {
				$widget_width = '50';
			}

			if ( $widgets == 3 ) {
				$widget_width = '33';
			}

			if ( $widgets == 4 ) {
				$widget_width = '25';
			}

			if ( $widgets == 5 ) {
				$widget_width = '20';
			}
			?>
			<div id="footer-widgets" class="site footer-widgets">
				<div <?php shesha_inside_footer_class(); ?>>
					<div class="inside-footer-widgets">
						<?php
						if ( $widgets >= 1 ) {
							shesha_do_footer_widget( $widget_width, 1 );
						}

						if ( $widgets >= 2 ) {
							shesha_do_footer_widget( $widget_width, 2 );
						}

						if ( $widgets >= 3 ) {
							shesha_do_footer_widget( $widget_width, 3 );
						}

						if ( $widgets >= 4 ) {
							shesha_do_footer_widget( $widget_width, 4 );
						}

						if ( $widgets >= 5 ) {
							shesha_do_footer_widget( $widget_width, 5 );
						}
						?>
					</div>
				</div>
			</div>
		<?php
		endif;

		/**
		 * shesha_after_footer_widgets hook.
		 *
		 */
		do_action( 'shesha_after_footer_widgets' );
	}
}

if ( ! function_exists( 'shesha_back_to_top' ) ) {
	add_action( 'shesha_after_footer', 'shesha_back_to_top', 2 );
	/**
	 * Build the back to top button
	 *
	 */
	function shesha_back_to_top() {
		$shesha_settings = wp_parse_args(
			get_option( 'shesha_settings', array() ),
			shesha_get_defaults()
		);

		if ( 'enable' !== $shesha_settings[ 'back_to_top' ] ) {
			return;
		}

		echo apply_filters( 'shesha_back_to_top_output', sprintf( // WPCS: XSS ok.
			'<a title="%1$s" rel="nofollow" href="#" class="shesha-back-to-top" style="opacity:0;visibility:hidden;" data-scroll-speed="%2$s" data-start-scroll="%3$s">
				<span class="screen-reader-text">%5$s</span>
			</a>',
			esc_attr__( 'Scroll back to top', 'shesha' ),
			absint( apply_filters( 'shesha_back_to_top_scroll_speed', 400 ) ),
			absint( apply_filters( 'shesha_back_to_top_start_scroll', 300 ) ),
			esc_attr( apply_filters( 'shesha_back_to_top_icon', 'fa-angle-up' ) ),
			esc_html__( 'Scroll back to top', 'shesha' )
		) );
	}
}

add_action( 'shesha_after_footer', 'shesha_side_padding_footer', 5 );
/**
 * Add holder div if sidebar padding is enabled
 *
 */
function shesha_side_padding_footer() { 
	$shesha_settings = wp_parse_args(
		get_option( 'shesha_spacing_settings', array() ),
		shesha_spacing_get_defaults()
	);
	
	$fixed_side_content   =  shesha_get_setting( 'fixed_side_content' ); 
	$socials_display_side =  shesha_get_setting( 'socials_display_side' ); 
	
	if ( ( $shesha_settings[ 'side_top' ] != 0 ) || ( $shesha_settings[ 'side_right' ] != 0 ) || ( $shesha_settings[ 'side_bottom' ] != 0 ) || ( $shesha_settings[ 'side_left' ] != 0 ) ) { ?>
    	<div class="shesha-side-left-cover"></div>
    	<div class="shesha-side-right-cover"></div>
	</div>
	<?php } 
	if ( ( $fixed_side_content != '' ) || ( $socials_display_side == true ) ) { ?>
    <div class="shesha-side-left-content">
        <?php if ( $socials_display_side == true ) { ?>
        <div class="shesha-side-left-socials">
        <?php do_action( 'shesha_social_bar_action' ); ?>
        </div>
        <?php } ?>
        <?php if ( $fixed_side_content != '' ) { ?>
    	<div class="shesha-side-left-text">
        <?php echo wp_kses_post( $fixed_side_content ); ?>
        </div>
        <?php } ?>
    </div>
    <?php
	}
}
