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/wpmuhibbah_err/wp-content/themes/goodwish/includes/nav-menu/top-navigation-walker.php
<?php

/**
 * Custom WP_NAV_MENU function for top navigation
 */
if (!class_exists('GoodwishEdgeTopNavigationWalker')) {
	class GoodwishEdgeTopNavigationWalker extends Walker_Nav_Menu {

		// add classes to ul sub-menus
		function display_element( $element, &$children_elements, $max_depth, $depth=0, $args, &$output )
		{
			$id_field = $this->db_fields['id'];
			if ( is_object( $args[0] ) ) {
				$args[0]->has_children = ! empty( $children_elements[$element->$id_field] );
			}
			return parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
		}

		function start_lvl( &$output, $depth = 0, $args = array() ) {

			$indent = str_repeat("\t", $depth);
			if($depth == 0){
				$out_div = '<div class="edgtf-menu-second"><div class="edgtf-menu-inner">';
			}else{
				$out_div = '';
			}

			// build html
			$output .= "\n" . $indent . $out_div  .'<ul>' . "\n";
		}
		function end_lvl( &$output, $depth = 0, $args = array() ) {
			$indent = str_repeat("\t", $depth);

			if($depth == 0){
				$out_div_close = '</div></div>';
			}else{
				$out_div_close = '';
			}

			$output .= "$indent</ul>". $out_div_close ."\n";
		}

		// add main/sub classes to li's and links
		function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {

			$classes = empty( $item->classes ) ? array() : (array) $item->classes;

			$indent = ( $depth > 0 ? str_repeat( "\t", $depth ) : '' ); // code indent
			if($depth==0 && $args->has_children) :
				$classes[] = 'edgtf-has-sub';
			endif;
			if($depth==1 && $args->has_children) :
				$classes[] = 'edgtf-sub';
			endif;

			//menu type class
			$wide_background = '';
			if(goodwish_edge_options()->getOptionValue('enable_wide_manu_background') == "yes" ){
				$wide_background = 'true';
			}

			//menu type class
			if($depth==0){
				if($item->type_menu == "wide"){
					$classes[] = 'edgtf-menu-wide';
					if($wide_background == 'true'){
						$classes[] = " edgtf-menu-wide wide-background";
					}
				}elseif($item->type_menu == "wide_icons"){
					$classes[] = 'edgtf-menu-wide edgtf-menu-icons';
					if($wide_background == 'true'){
						$classes[] = " edgtf-menu-wide edgtf-menu-icons wide-background";
					}
				}else{
					$classes[] = 'edgtf-menu-narrow';
				}
			}

			//wide menu position class
			if($depth==0){
				if($item->wide_position == "right"){
					$classes[] = 'edgtf-menu-right-position';
				}elseif($item->wide_position == "left"){
					$classes[] = 'edgtf-menu-left-position';
				}
			}

			$anchor = '';
			if($item->anchor != ""){
				$anchor = '#'.esc_attr($item->anchor);
				$classes[] = 'anchor-item';
			}

			// depth dependent classes
			if ($item->anchor == "" && (($item->current && $depth == 0) || ($item->current_item_ancestor && $depth == 0))):
				$classes[] = 'edgtf-active-item';
			endif;

			$class_names = esc_attr( implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) ) );

			// build html
			$output .= $indent . '<li id="nav-menu-item-'. $item->ID . '" class="' . $class_names . '">';

			$a_classes = array();

			if (($item->current && $depth == 0) ||  ($item->current_item_ancestor && $depth == 0) ):
				$a_classes[] = 'current';
			endif;

			if($item->nolink != '') {
				$a_classes[] = 'edgtf-no-link';
			}

			// link attributes
			$attributes  = ! empty( $item->attr_title ) ? ' title="'  . esc_attr( $item->attr_title ) .'"' : '';
			$attributes .= ! empty( $item->target )     ? ' target="' . esc_attr( $item->target     ) .'"' : '';
			$attributes .= ! empty( $item->xfn )        ? ' rel="'    . esc_attr( $item->xfn        ) .'"' : '';
			$attributes .= ! empty( $item->url )        ? ' href="'   . esc_url( $item->url		) . $anchor .'"' : '';
			$attributes .= ! empty( $a_classes ) 		? ' class="'  . implode(' ', $a_classes) .'"' : '';
			$attributes .= ! empty( $item->nolink ) 	? ' style="cursor: default;" onclick="JavaScript: return false;"' : '';

			$item_output = $args->before;
			if($item->hide == ""){

				$item_output .= '<a'. $attributes .'><span class="edgtf-item-outer">';
				$item_output .= '<span class="edgtf-item-inner">';

				if(!empty ($item->icon) && $item->icon != 'null'){
					$icon = $item->icon;
					if($item->icon_pack == 'font_awesome') {
						$icon .= ' fa';
					}
					$item_output .= '<span class="edgtf-menu-icon-wrapper"><i class="edgtf-menu-icon '.$icon.'"></i></span>';
				}

				$item_output .= '<span class="edgtf-item-text">';
					$item_output .= apply_filters('the_title', $item->title, $item->ID);
				$item_output .= '</span>'; //close span.edgtf-item-text
				$item_output .= '</span>'; //close span.edgtf-item-inner
				$item_output .= '<span class="plus"></span>';

				//append arrow for dropdown
				if($args->has_children && $depth == 1) {
					$item_output .= '<i class="edgtf-menu-arrow arrow_carrot-right"></i>';
				}

				$item_output .= '</span></a>'; //close span.edgtf-item-outer
			}

			if($item->sidebar != "" && $depth > 0){
				ob_start();
				dynamic_sidebar($item->sidebar);
				$sidebar_content = ob_get_contents();
				ob_end_clean();
				$item_output .= $sidebar_content;
			}

			$item_output .= $args->after;

			// build html
			$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
		}
	}
}