HEX
Server: Apache
System: Linux p3plzcpnl505785.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: xuvi7odgswsg (6947073)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/xuvi7odgswsg/public_html/wp-content/themes/bb-theme/includes/footer-col1.php
<?php

if ( 'none' !== $layout ) {

	if ( '1-col' === $layout ) {
		echo '<div class="' . FLLayout::get_col_classes( array( 'md' => 12 ) ) . ' text-center clearfix">';
	} else {
		echo '<div class="' . FLLayout::get_col_classes( array( 'sm' => 6, 'md' => 6 ) ) . ' text-left clearfix">'; // @codingStandardsIgnoreLine
	}

	do_action( 'fl_footer_col1_open' );

	if ( 'text' === $col_layout || 'social-text' === $col_layout ) {
		if ( empty( $col_text ) ) {
			get_template_part( 'includes/copyright' );
		} else {
			echo '<div class="fl-page-footer-text fl-page-footer-text-1">' . do_shortcode( $col_text ) . '</div>';
		}
	}
	if ( 'social' === $col_layout || 'social-text' === $col_layout ) {
		self::social_icons();
	}
	if ( 'menu' === $col_layout ) {
		wp_nav_menu(array(
			'theme_location' => 'footer',
			'items_wrap'     => '<ul id="%1$s" class="fl-page-footer-nav nav navbar-nav %2$s">%3$s</ul>',
			'container'      => false,
			'fallback_cb'    => 'FLTheme::nav_menu_fallback',
		));
	}

	do_action( 'fl_footer_col1_close' );

	echo '</div>';
}