HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpwisesolutions/wp-content/themes/pofo/templates/footer/footer-bottom-content.php
<?php
/**
 * The template for displaying the footer bottom
 *
 * @package Pofo
 */
?>
<?php
	// Exit if accessed directly.
	if ( ! defined( 'ABSPATH' ) ) { exit; }

	/* Check if footer social icon show / hide */
    $pofo_footer_bottom_extra_class = '';
    $pofo_disable_footer_bottom_right = pofo_option( 'pofo_disable_footer_bottom_right', '' );
	$pofo_footer_bottom_right_text = pofo_option( 'pofo_footer_bottom_right_text', '2022 POFO is Proudly Powered by ThemeZaa' );
    $pofo_disable_footer_bottom_left = pofo_option( 'pofo_disable_footer_bottom_left', '' );
	$pofo_footer_bottom_left_text = pofo_option( 'pofo_footer_bottom_left_text', 'POFO - Portfolio Concept Theme' );
    $pofo_footer_bottom_style = pofo_option( 'pofo_footer_bottom_style', 'footer-bottom-style-1' );
    $pofo_footer_bottom_padding_setting = pofo_option( 'pofo_footer_bottom_padding_setting', 'small-padding' );
    $pofo_footer_bottom_container_fluid = pofo_option( 'pofo_footer_bottom_container_fluid', '0' );
    $pofo_container_fluid = ( $pofo_footer_bottom_container_fluid == 1 ) ? 'container-fluid' : 'container';
    switch ($pofo_footer_bottom_padding_setting) {
        case 'medium-padding':
            $pofo_footer_bottom_extra_class .= ' padding-65px-tb xs-padding-30px-tb';
            break;

        case 'large-padding':
            $pofo_footer_bottom_extra_class .= ' padding-five-tb xs-padding-30px-tb';
            break;
        
        case 'small-padding':
        default:
            $pofo_footer_bottom_extra_class .= ' padding-50px-tb xs-padding-30px-tb';
            break;
    }
    
    // add unique style class
    $pofo_footer_bottom_extra_class .= ' ' . $pofo_footer_bottom_style;

    switch ( $pofo_footer_bottom_style ) {
        case 'footer-bottom-style-1':
            if( $pofo_footer_bottom_left_text || $pofo_footer_bottom_right_text ){
                echo '<div class="pofo-footer-bottom">';
                    echo '<div class="'.$pofo_container_fluid.'">';
                        echo '<div class="footer-bottom border-top border-color-medium-dark-gray'.$pofo_footer_bottom_extra_class.'">';
                            echo '<div class="row">';
                            if( ( $pofo_footer_bottom_left_text && $pofo_footer_bottom_right_text ) && ( ( $pofo_disable_footer_bottom_left != '0' || $pofo_disable_footer_bottom_left == '' ) && ( $pofo_disable_footer_bottom_right != '0' ) ) ){
                                if( $pofo_footer_bottom_left_text && ( $pofo_disable_footer_bottom_left != '0' ) ){
                                    echo '<div class="col-md-6 col-sm-6 col-xs-12 text-left text-small xs-text-center footer-left-text">'.$pofo_footer_bottom_left_text.'</div>';
                                }
                                if( $pofo_footer_bottom_right_text && ( $pofo_disable_footer_bottom_right != '0' ) ){
                                    echo '<div class="col-md-6 col-sm-6 col-xs-12 text-right text-small xs-text-center footer-right-text">'.$pofo_footer_bottom_right_text.'</div>';
                                }
                            }else if( $pofo_footer_bottom_left_text || $pofo_footer_bottom_right_text ){
                                if( $pofo_footer_bottom_left_text && ( $pofo_disable_footer_bottom_left != '0' ) ){
                                    echo '<div class="col-md-12 col-xs-12 text-small text-center footer-left-text">'.$pofo_footer_bottom_left_text.'</div>';
                                }
                                if( $pofo_footer_bottom_right_text && ( $pofo_disable_footer_bottom_right != '0' ) ){
                                    echo '<div class="col-md-12 col-xs-12 text-small text-center footer-right-text">'.$pofo_footer_bottom_right_text.'</div>';
                                }
                            }
                            echo '</div>';
                        echo '</div>';
                    echo '</div>';
                echo '</div>';
            }
            break;
        
        case 'footer-bottom-style-2':
            if( $pofo_footer_bottom_left_text || $pofo_footer_bottom_right_text ){
                echo '<div class="pofo-footer-bottom footer-bottom text-center'.$pofo_footer_bottom_extra_class.'">';
                    echo '<div class="'.$pofo_container_fluid.'">';
                        echo '<div class="row">';
                            if( ( $pofo_footer_bottom_left_text && $pofo_footer_bottom_right_text ) && ( ( $pofo_disable_footer_bottom_left != '0' || $pofo_disable_footer_bottom_left == '' ) && ( $pofo_disable_footer_bottom_right != '0' ) ) ){
                                if( $pofo_footer_bottom_left_text && ( $pofo_disable_footer_bottom_left != '0' ) ){
                                    echo '<div class="col-md-6 col-sm-6 col-xs-12 text-left text-small xs-text-center footer-left-text">'.$pofo_footer_bottom_left_text.'</div>';
                                }
                                if( $pofo_footer_bottom_right_text && ( $pofo_disable_footer_bottom_right != '0' ) ){
                                    echo '<div class="col-md-6 col-sm-6 col-xs-12 text-right text-small xs-text-center footer-right-text">'.$pofo_footer_bottom_right_text.'</div>';
                                }
                            }else if( $pofo_footer_bottom_left_text || $pofo_footer_bottom_right_text ){
                                if( $pofo_footer_bottom_left_text && ( $pofo_disable_footer_bottom_left != '0' ) ){
                                    echo '<div class="col-md-12 col-xs-12 text-small text-center footer-left-text">'.$pofo_footer_bottom_left_text.'</div>';
                                }
                                if( $pofo_footer_bottom_right_text && ( $pofo_disable_footer_bottom_right != '0' ) ){
                                    echo '<div class="col-md-12 col-xs-12 text-small text-center footer-right-text">'.$pofo_footer_bottom_right_text.'</div>';
                                }
                            }
                        echo '</div>';
                    echo '</div>';
                echo '</div>';    
            }
        break;
    }