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/lib/mega-menu/front-mega-menu-addon.php
<?php
/**
 * Pofo Mega Menu Options For Admin And Front.
 *
 * @package Pofo
 */
?>
<?php
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) { exit; }

/**
 * Navigation Menu API: Pofo_Mega_Menu_Walker class
 *
 */

/**
 * Pofo Front Menu Walker Class.
 *
 */

if( ! class_exists( 'Pofo_Mega_Menu_Walker' ) ) {

    class Pofo_Mega_Menu_Walker extends Walker_Nav_Menu {
        
        /* Defaine plublic variable */
        public $get_first_level_menu_id = '';

        /**
         * Starts the list before the elements are added.
         *
         */
        public function start_lvl( &$output, $depth = 0, $args = array() ) {
            if ( isset( $args->item_spacing ) && 'discard' === $args->item_spacing ) {
                $t = '';
                $n = '';
            } else {
                $t = "\t";
                $n = "\n";
            }
            $indent = str_repeat( $t, $depth );

            // Default class.
            $classes = array( 'sub-menu' );

            $pofo_get_first_level_status = get_post_meta( $this->get_first_level_menu_id, '_pofo_mega_menu_item_status', true );

            if( $pofo_get_first_level_status == 'enabled' && $depth == 0 ) {
                $output .= '<div class="menu-back-div dropdown-menu megamenu-content mega-menu collapse mega-menu-full">';
                $classes[] = 'equalize sm-equalize-auto';
            } elseif( $pofo_get_first_level_status == 'enabled' && $depth == 1 ) {
                
            } else {
                $classes[] = 'dropdown-menu';
            }

            /**
             * Filters the CSS class(es) applied to a menu list element.
             *
             */
            $class_names = join( ' ', apply_filters( 'nav_menu_submenu_css_class', $classes, $args, $depth ) );
            $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
            
            $output .= "{$n}{$indent}<ul $class_names>{$n}";
        }

        /**
         * Ends the list of after the elements are added.
         *
         */
        public function end_lvl( &$output, $depth = 0, $args = array() ) {
            if ( isset( $args->item_spacing ) && 'discard' === $args->item_spacing ) {
                $t = '';
                $n = '';
            } else {
                $t = "\t";
                $n = "\n";
            }
            $indent = str_repeat( $t, $depth );
            $output .= "$indent</ul>{$n}";

            $pofo_get_first_level_status = get_post_meta( $this->get_first_level_menu_id, '_pofo_mega_menu_item_status', true );
            if( $pofo_get_first_level_status == 'enabled' && $depth == 0 ) {
                $output .= '</div>';
            }

            if( $depth == 0){
                $this->get_first_level_menu_id = '';
            }
        }

        /**
         * Starts the element output.
         *
         */
        public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
            
            if ( isset( $args->item_spacing ) && 'discard' === $args->item_spacing ) {
                $t = '';
                $n = '';
            } else {
                $t = "\t";
                $n = "\n";
            }
            $indent = ( $depth ) ? str_repeat( $t, $depth ) : '';

            $classes = empty( $item->classes ) ? array() : (array) $item->classes;
            $classes[] = 'menu-item-' . $item->ID;

            /*
             * Add Simple Menu or Mega Menu Class
             *
             */
            $pofo_mega_menu_single_item_status= get_post_meta( $item->ID, '_pofo_mega_menu_single_item_status', true );
            $pofo_mega_menu_item_status       = get_post_meta( $item->ID, '_pofo_mega_menu_item_status', true );
            $pofo_mega_menu_item_title_status = get_post_meta( $item->ID, '_pofo_mega_menu_item_title_status', true );
            $pofo_mega_menu_columns           = get_post_meta( $item->ID, '_pofo_mega_menu_columns', true );
            $pofo_submenu_position            = get_post_meta( $item->ID, '_pofo_submenu_position', true );
            $pofo_menu_item_icon              = get_post_meta( $item->ID, '_pofo_menu_item_icon', true );
            $pofo_mega_menu_item_sidebar      = get_post_meta( $item->ID, '_pofo_mega_menu_item_sidebar', true );

            $pofo_get_first_level_status            = get_post_meta( $this->get_first_level_menu_id, '_pofo_mega_menu_item_status', true );
            $pofo_get_first_level_mega_menu_columns = get_post_meta( $this->get_first_level_menu_id, '_pofo_mega_menu_columns', true );
            
            // Replace old Awesome Font Icons
            $pofo_menu_item_icon = pofo_get_fontawesome_icon( $pofo_menu_item_icon );

            switch ($depth) {
                case '0':
                    if( $args->walker->has_children ) {
                        $classes[] = 'dropdown';
                    }
                    if( $pofo_mega_menu_item_status == 'enabled' ) {
                        $classes[] = 'megamenu-fw';
                    } else { 
                        $classes[] = 'simple-dropdown';
                        $classes[] = $pofo_submenu_position == 'left' ? 'simple-dropdown-left' : 'simple-dropdown-right';
                    }
                    
                    if( $pofo_mega_menu_item_status == 'enabled' ):
                        $this->get_first_level_menu_id = $item->ID;
                    endif;
                break;
                case '1':
                    if( $pofo_get_first_level_status == 'enabled' ) {
                        
                        switch( $pofo_get_first_level_mega_menu_columns ) {

                            case '6':
                                $classes[] = 'col-lg-2 col-md-2 col-sm-12 col-xs-12';
                            break;

                            case '5':
                                $classes[] = 'vc_col-lg-1/5 vc_col-md-1/5 col-sm-12 col-xs-12';
                            break;

                            case '4':
                                $classes[] = 'col-lg-3 col-md-3 col-sm-12 col-xs-12';
                            break;

                            case '3':
                                $classes[] = 'col-lg-4 col-md-4 col-sm-12 col-xs-12';
                            break;

                            case '2':
                                $classes[] = 'col-lg-6 col-md-6 col-sm-12 col-xs-12';
                            break;
                            
                            default:
                                $classes[] = 'col-lg-12 col-md-12 col-sm-12 col-xs-12';
                            break;
                        }
                    } else {
                        if( $args->walker->has_children ) {
                            $classes[] = 'dropdown';
                        }
                    }
                break;
                default:
                    if( $args->walker->has_children ) {
                        $classes[] = 'dropdown';
                    }
                break;
            }
            if( $pofo_mega_menu_item_sidebar != '0' ){
                $classes[] = 'pofo-menu-sidebar';
            }
            
            /**
             * Filters the arguments for a single nav menu item.
             *
             */
            $args = apply_filters( 'nav_menu_item_args', $args, $item, $depth );

            /**
             * Filters the CSS class(es) applied to a menu item's list item element.
             *
             */
            $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args, $depth ) );
            $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';

            /**
             * Filters the ID applied to a menu item's list item element.
             *
             */
            $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args, $depth );
            $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';

            $output .= $indent . '<li' . $id . $class_names .'>';

            $atts = array();
            $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';
            $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';
            $atts['target'] = ! empty( $item->target )     ? $item->target     : '';
            $atts['href']   = ! empty( $item->url )        ? $item->url        : 'javascript:void(0);';

            if( $pofo_get_first_level_status == 'enabled' && ( $depth == 1 || $depth == 2 ) && $pofo_mega_menu_item_title_status == 'enabled' ) {
                $atts['class'] = 'dropdown-header';
            }

            if( $pofo_mega_menu_single_item_status == 'enabled' && $pofo_mega_menu_item_status != 'enabled' ) {
                $atts['class']   = 'inner-link';
            }


            /**
             * Filters the HTML attributes applied to a menu item's anchor element.
             *
             */
            $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args, $depth );

            $attributes = '';
            foreach ( $atts as $attr => $value ) {
                if ( ! empty( $value ) ) {
                    $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
                    $attributes .= ' ' . $attr . '="' . $value . '"';
                }
            }

            /** This filter is documented in wp-includes/post-template.php */
            $title = apply_filters( 'the_title', $item->title, $item->ID );

            /**
             * Filters a menu item's title.
             *
             */
            $title = apply_filters( 'nav_menu_item_title', $title, $item, $args, $depth );

            $item_output = $args->before;

            // Sidebar Menu
            if($pofo_mega_menu_item_sidebar != '0' && $pofo_get_first_level_status == 'enabled' && is_active_sidebar( $pofo_mega_menu_item_sidebar ) ) {
                
                ob_start();
                dynamic_sidebar( $pofo_mega_menu_item_sidebar );
                $mega_menu_item_sidebar_result = ob_get_contents();
                $item_output .= apply_filters( 'pofo_mega_menu_item_sidebar_result', $mega_menu_item_sidebar_result );
                ob_end_clean();

            } else {

                $item_output .= '<a'. $attributes .' itemprop="url">';
                
                    /* Add menu icon */
                    if( ! empty( $pofo_menu_item_icon ) && $pofo_menu_item_icon != 1 ) {

                        // if( strpos( $pofo_menu_item_icon, 'fa-' ) !== false) {
                        //     $item_output .= '<i class="'.$pofo_menu_item_icon.'"></i>';
                        // } else {
                            $item_output .= '<i class="'.$pofo_menu_item_icon.'"></i>';
                        //}
                    }

                    $item_output .= $args->link_before . $title . $args->link_after;

                    if( ( $depth == 1 || $depth == 2 ) && $pofo_get_first_level_status != 'enabled' && $args->walker->has_children ) {
                        $item_output .= '<i class="fa-solid fa-angle-right"></i>';
                    }

                $item_output .= '</a>';
            }
            
            $item_output .= $args->after;

            /**
             * Filters a menu item's starting output.
             *
             */
            $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );

            /* Add mobile icon for parent item */

            if( $args->walker->has_children && $depth == 0 ) {
                $output .= '<i class="fa-solid fa-angle-down dropdown-toggle" data-toggle="dropdown"></i>';
            }
        }

        /**
         * Ends the element output, if needed.
         *
         */
        public function end_el( &$output, $item, $depth = 0, $args = array() ) {
            if( $depth == 0){
                $this->get_first_level_menu_id = '';
            }
            if ( isset( $args->item_spacing ) && 'discard' === $args->item_spacing ) {
                $t = '';
                $n = '';
            } else {
                $t = "\t";
                $n = "\n";
            }
            $output .= "</li>{$n}";
        }

    } // Walker_Nav_Menu
}