HEX
Server: Apache
System: Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64
User: server (1002)
PHP: 8.3.20
Disabled: exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source
Upload Files
File: /home/muoapartman/www/wp-content/themes/resoto/template-parts/footers/footer-layout1.php
<?php
	$footer_layout = get_theme_mod( 'resoto_footer_layout', 'layout1' );
	$copyright_text = get_theme_mod( 'resoto_copyright_text', '' );
?>
<?php if( is_active_sidebar( 'footer-1' ) || is_active_sidebar( 'footer-2' ) || is_active_sidebar( 'footer-3' ) || is_active_sidebar( 'footer-4' ) ) : ?>
	<footer id="colophon" class="site-footer <?php echo esc_attr( $footer_layout ); ?>">
		<div class="rcontainer">
			<div class="top-footer">
					<?php if( is_active_sidebar( 'footer-1' ) ) : ?>
						<?php dynamic_sidebar( 'footer-1' ); ?>
					<?php endif; ?>

					<?php if( is_active_sidebar( 'footer-2' ) ) : ?>
						<?php dynamic_sidebar( 'footer-2' ); ?>
					<?php endif; ?>

					<?php if( is_active_sidebar( 'footer-3' ) ) : ?>
						<?php dynamic_sidebar( 'footer-3' ); ?>
					<?php endif; ?>

					<?php if( is_active_sidebar( 'footer-4' ) ) : ?>
						<?php dynamic_sidebar( 'footer-4' ); ?>
					<?php endif; ?>
			</div>		
		</div> <!-- .rcontainer -->
	</footer><!-- #colophon -->
<?php endif; ?>
<div class="bottom-footer">
	<div class="rcontainer">
		<?php
			if( $copyright_text ) {
				echo wp_kses_post( $copyright_text );
			} else {
				echo esc_html__( '&copy; 2019 | All Rights Reserved', 'resoto' );
			}
		?>
		<span class="sep"> | </span>
		<?php
		/* translators: 1: Theme name, 2: Theme author. */
		printf( esc_html__( 'Theme: %1$s by %2$s.', 'resoto' ), 'resoto', '<a href="https://mysticalthemes.com/">MysticalThemes</a>' );
		?>
	</div>
</div>