Sindbad~EG File Manager

Current Path : /home/infinitibizsol/www/wp-content/plugins/elementskit-lite/widgets/nav-menu/
Upload File :
Current File : /home/infinitibizsol/www/wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu-walker.php

<?php

namespace ElementsKit_Lite;

class ElementsKit_Seconday_Menu_Walker extends \Walker_Nav_Menu
{
	// Start Level
	public function start_lvl(&$output, $depth = 0, $args = null)
	{
		$indent = str_repeat("\t", $depth);
		$classes = ['elementskit-dropdown elementskit-submenu-panel'];
		$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";
	}

	// Start Element
	public function start_el(&$output, $item, $depth = 0, $args = null, $id = 0)
	{
		$indent = ($depth) ? str_repeat("\t", $depth) : '';
		$classes = empty($item->classes) ? [] : (array) $item->classes;
		if (in_array('menu-item-has-children', $classes)) {
			$classes[] = 'elementskit-dropdown-has';
		}
		$class_names = join(' ', apply_filters('nav_menu_css_class', array_filter($classes), $item, $args, $depth));
		$class_names = $class_names ? ' class="' . esc_attr($class_names) . '"' : '';

		$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 = [];
		$atts['title'] = !empty($item->attr_title) ? $item->attr_title : '';
		$atts['target'] = !empty($item->target) ? $item->target : '';
		$atts['rel'] = !empty($item->xfn) ? $item->xfn : '';
		$atts['href'] = !empty($item->url) ? $item->url : '';

		$atts = apply_filters('nav_menu_link_attributes', $atts, $item, $args, $depth);
		$attributes = '';
		foreach ($atts as $attr => $value) {
			if (!empty($value)) {
				$attributes .= ' ' . $attr . '="' . esc_attr($value) . '"';
			}
		}

		$title = apply_filters('the_title', $item->title, $item->ID);
		$title = apply_filters('nav_menu_item_title', $title, $item, $args, $depth);

		$item_output = $args->before;
		$item_output .= '<a' . $attributes . '>';

		$submenu_indicator = '';
		if ( in_array( 'menu-item-has-children', $classes ) ) {
			// Use an if statement to conditionally display the submenu indicator icon
			if(!empty($args->submenu_indicator_icon)) {
				$submenu_indicator .= $args->submenu_indicator_icon;
			} else {
				$submenu_indicator .= '<i class="icon icon-down-arrow1 elementskit-submenu-indicator"></i>';
			}
		}

		$item_output .= $args->link_before . $title . $submenu_indicator .$args->link_after;
		$item_output .= '</a>';
		$item_output .= $args->after;

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

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists