/home/arranoyd/stopostoprirodno/wp-content/themes/bridge/includes/nav_menu/qode-menu.php
<?php
if(!function_exists('bridge_qode_add_custom_nav_fields')) {
// add custom menu fields to menu
function bridge_qode_add_custom_nav_fields($menu_item) {
$menu_item->anchor = get_post_meta($menu_item->ID, '_menu_item_anchor', true);
$menu_item->nolink = get_post_meta($menu_item->ID, '_menu_item_nolink', true);
$menu_item->hide = get_post_meta($menu_item->ID, '_menu_item_hide', true);
$menu_item->type_menu = get_post_meta($menu_item->ID, '_menu_item_type_menu', true);
$menu_item->icon = get_post_meta($menu_item->ID, '_menu_item_icon', true);
$menu_item->icon_pack = get_post_meta($menu_item->ID, '_menu_item_icon_pack', true);
$menu_item->sidebar = get_post_meta($menu_item->ID, '_menu_item_sidebar', true);
$menu_item->wide_position = get_post_meta($menu_item->ID, '_menu_item_wide_position', true);
$menu_item->show_widget_area_in_popup = get_post_meta($menu_item->ID, '_menu_item_show_widget_area_in_popup', true);
$menu_item->featured_icon = get_post_meta($menu_item->ID, '_menu_item_featured_icon', true);
return $menu_item;
}
add_filter( 'wp_setup_nav_menu_item', 'bridge_qode_add_custom_nav_fields' );
}
if(!function_exists('bridge_qode_update_custom_nav_fields')) {
/**
* Save menu custom fields
*
* @access public
* @since 1.0
* @return void
*/
function bridge_qode_update_custom_nav_fields($menu_id, $menu_item_db_id, $args ) {
$check = array('anchor', 'nolink', 'hide', 'type_menu', 'icon', 'icon_pack', 'sidebar', 'wide_position', 'show_widget_area_in_popup', 'featured_icon');
if(isset($_POST['qode_menu_options'])) {
parse_str(urldecode($_POST['qode_menu_options']), $parse_array);
foreach ($check as $key) {
if(!isset($parse_array['menu_item_'.$key.'_'.$menu_item_db_id])) {
$parse_array['menu_item_'.$key.'_'.$menu_item_db_id] = "";
}
$value = $parse_array['menu_item_'.$key.'_'.$menu_item_db_id];
update_post_meta( $menu_item_db_id, '_menu_item_'.$key, $value );
}
}
}
add_action( 'wp_update_nav_menu_item', 'bridge_qode_update_custom_nav_fields', 10, 3 );
}
if(!function_exists('bridge_qode_edit_walker')) {
/**
* Define new Walker edit
*
* @access public
* @since 1.0
* @return void
*/
function bridge_qode_edit_walker($walker, $menu_id) {
return 'Bridge_Qode_Walker_Nav_Menu_Edit_Custom';
}
add_filter( 'wp_edit_nav_menu_walker', 'bridge_qode_edit_walker', 10, 2 );
}
include_once( QODE_ROOT_DIR . '/includes/nav_menu/edit_custom_walker.php');
/* Custom WP_NAV_MENU function for top navigation */
if (!class_exists('BridgeQodeType1WalkerNavMenu')) {
class BridgeQodeType1WalkerNavMenu 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="second"><div class="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 ) {
global $wp_query;
global $bridge_qode_options;
$sub = "";
$indent = ( $depth > 0 ? str_repeat( "\t", $depth ) : '' ); // code indent
if($depth==0 && $args->has_children) :
$sub = ' has_sub';
endif;
if($depth==1 && $args->has_children) :
$sub = 'sub';
endif;
// passed classes
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$class_names = esc_attr( implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) ) );
$wide_background = '';
$wide_menu = '';
if(isset($bridge_qode_options['enable_wide_manu_background']) && $bridge_qode_options['enable_wide_manu_background'] == "yes" ){
$wide_background = 'true';
if(bridge_qode_options()->getOptionValue('enable_full_width_wide_menu') == "yes"){
$wide_menu = 'true';
}
}
//menu type class
$menu_type = "";
if($depth==0){
if($item->type_menu == "wide"){
$menu_type .= " wide";
if($wide_background == 'true'){
$menu_type .= " wide_background";
$menu_type .= $wide_menu == 'true' ? ' full_width_wide_menu' : '' ;
}
}elseif($item->type_menu == "wide_icons"){
$menu_type .= " wide icons";
if($wide_background == 'true'){
$menu_type .= " icons wide_background";
$menu_type .= $wide_menu == 'true' ? ' full_width_wide_menu' : '' ;
}
}else{
$menu_type .= " narrow";
}
}
//wide menu position class
$wide_menu_position = "";
if($depth==0){
if($item->wide_position == "right"){
$wide_menu_position = " right_position";
}elseif($item->wide_position == "left"){
$wide_menu_position = " left_position";
}else{
$wide_menu_position = "";
}
}
//custom widget area in popup class
$show_widget_area_in_popup = "";
$show_in_popup = false;
if($depth > 0 && $item->show_widget_area_in_popup == "show_widget_area_in_popup"){
$show_widget_area_in_popup = ' show_widget_area_in_popup';
$show_in_popup = true;
}
$anchor = '';
if($item->anchor != ""){
$anchor = '#'.esc_attr($item->anchor);
$class_names .= ' anchor-item';
}
$active = "";
// depth dependent classes
if ($item->anchor == "" && (($item->current && $depth == 0) || ($item->current_item_ancestor && $depth == 0))):
$active = 'active';
endif;
// build html
$output .= $indent . '<li id="nav-menu-item-'. $item->ID . '" class="' . $class_names . ' ' . $active . $sub . $menu_type . $wide_menu_position . $show_widget_area_in_popup .'">';
$current_a = "";
// 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 .= ' href="' . esc_attr( $item->url ) .$anchor.'"';
if (($item->current && $depth == 0) || ($item->current_item_ancestor && $depth == 0) ):
$current_a .= ' current ';
endif;
$no_link_class = '';
if($item->nolink != '') {
$no_link_class = ' no_link';
}
$attributes .= ' class="'.$current_a.$no_link_class.'"';
$item_output = $args->before;
if($show_in_popup){
$item_output .= '<div class="popup_wrapper">';
}
if($item->hide == ""){
if($item->nolink == ""){
$item_output .= '<a'. $attributes .'>';
} else{
$item_output .= '<a'. $attributes .' style="cursor: default;" onclick="JavaScript: return false;">';
}
$icon = !empty($item->icon) && $item->icon !== 'null' ? $item->icon : 'blank';
$angle_icon = '';
if($depth == 1) {
$angle_icon = 'fa-angle-right';
}
$icon_pack = 'font_awesome';
if(empty($this->icon_pack)) {
$item->icon_pack = $icon_pack;
}
if($item->icon_pack == 'font_awesome') {
$icon .= ' fa';
}
$item_output .= '<i class="menu_icon '.$icon.'"></i>';
$item_output .= '<span>'.apply_filters( 'the_title', $item->title, $item->ID );
if($depth==0 && isset($bridge_qode_options['menu_underline_dash']) && $bridge_qode_options['menu_underline_dash'] == "yes"){
$item_output .= '<span class="underline_dash"></span>';
}
$item_output .= '</span><span class="plus"></span>';
if($item->featured_icon !== ""){
$item_output .= '<span class="qode-featured-icon '. $item->featured_icon .'" aria-hidden="true"></span>';
}
//append arrow for dropdown
if($args->has_children && $angle_icon != "") {
$item_output .= '<i class="q_menu_arrow fa '.$angle_icon.'"></i>';
}
$item_output .= '</a>';
}
if($item->sidebar != "" && $depth > 0){
ob_start();
dynamic_sidebar($item->sidebar);
$sidebar_content = ob_get_contents();
ob_end_clean();
$item_output .= $sidebar_content;
}
if($show_in_popup){
$item_output .= '</div>';
}
$item_output .= $args->after;
// build html
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
}
/* Custom WP_NAV_MENU function for mobile navigation */
if (!class_exists('BridgeQodeType2WalkerNavMenu')) {
class BridgeQodeType2WalkerNavMenu 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);
// build html
$output .= "\n" . $indent .'<ul class="sub_menu">' . "\n";
}
function end_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "$indent</ul>" ."\n";
}
// add main/sub classes to li's and links
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
global $wp_query;
global $bridge_qode_options;
$sub = "";
$indent = ( $depth > 0 ? str_repeat( "\t", $depth ) : '' ); // code indent
if($depth >=0 && $args->has_children) :
$sub = ' has_sub';
endif;
// passed classes
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$class_names = esc_attr( implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) ) );
$anchor = '';
if($item->anchor != ""){
$anchor = '#'.esc_attr($item->anchor);
}
$active = "";
// depth dependent classes
if ($item->anchor == "" && (($item->current && $depth == 0) || ($item->current_item_ancestor && $depth == 0))):
$active = 'active';
endif;
// build html
$output .= $indent . '<li id="mobile-menu-item-'. $item->ID . '" class="' . $class_names . ' ' . $active . $sub .'">';
$current_a = "";
// 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 .= ' href="' . esc_attr( $item->url ) .$anchor.'"';
if (($item->current && $depth == 0) || ($item->current_item_ancestor && $depth == 0) ):
$current_a .= ' current ';
endif;
$attributes .= ' class="'. $current_a . '"';
$item_output = $args->before;
if($item->hide == ""){
if($item->nolink == ""){
$item_output .= '<a'. $attributes .'>';
}else{
$item_output .= '<h3>';
}
$featured_icon = ''; // need to be in description or in title (if description is disabled) because both are in one row (only for mobile)
// if it is included in title, icon need to be present in this string for cancat with title
if($item->featured_icon !== ""){
$featured_icon .= '<span class="qode-featured-icon '. $item->featured_icon .'" aria-hidden="true"></span>';
}
$item_output .= $args->link_before .apply_filters( 'the_title', $item->title, $featured_icon, $item->ID );
$item_output .= $args->link_after;
if($item->nolink == ""){
$item_output .= '</a><span class="mobile_arrow"><i class="fa fa-angle-right"></i><i class="fa fa-angle-down"></i></span>';
}else{
$item_output .= '</h3><span class="mobile_arrow"><i class="fa fa-angle-right"></i><i class="fa fa-angle-down"></i></span>';
}
}
$item_output .= $args->after;
// build html
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
}
/* Custom WP_NAV_MENU function for popup navigation */
if (!class_exists('BridgeQodeType3WalkerNavMenu')) {
class BridgeQodeType3WalkerNavMenu 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);
// build html
$output .= "\n" . $indent .'<ul class="sub_menu">' . "\n";
}
function end_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "$indent</ul>" ."\n";
}
// add main/sub classes to li's and links
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
global $wp_query;
global $qode_options_theme16;
$sub = "";
$indent = ( $depth > 0 ? str_repeat( "\t", $depth ) : '' ); // code indent
if($depth >=0 && $args->has_children) :
$sub = ' has_sub';
endif;
// passed classes
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$class_names = esc_attr( implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) ) );
$anchor = '';
if($item->anchor != ""){
$anchor = '#'.esc_attr($item->anchor);
}
$active = "";
// depth dependent classes
if ($item->anchor == "" && (($item->current && $depth == 0) || ($item->current_item_ancestor && $depth == 0))):
$active = 'active';
endif;
// build html
$output .= $indent . '<li id="popup-menu-item-'. $item->ID . '" class="' . $class_names . ' ' . $active . $sub .'">';
$current_a = "";
// 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 .= ' href="' . esc_attr( $item->url ) .$anchor.'"';
if (($item->current && $depth == 0) || ($item->current_item_ancestor && $depth == 0) ):
$current_a .= ' current ';
endif;
$attributes .= ' class="'. $current_a . '"';
$item_output = $args->before;
if($item->hide == ""){
if($item->nolink == ""){
$item_output .= '<a'. $attributes .'>';
}else{
$item_output .= '<h6>';
}
$item_output .= $args->link_before .apply_filters( 'the_title', $item->title, $item->ID );
$item_output .= $args->link_after;
if($item->nolink == ""){
$item_output .= '</a>';
}else{
$item_output .= '</h6>';
}
}
$item_output .= $args->after;
// build html
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
}
/* Custom WP_NAV_MENU function for left/right navigation */
if (!class_exists('BridgeQodeType4WalkerNavMenu')) {
class BridgeQodeType4WalkerNavMenu 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);
// build html
$output .= "\n" . $indent .'<ul class="sub_menu">' . "\n";
}
function end_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "$indent</ul>" ."\n";
}
// add main/sub classes to li's and links
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
global $wp_query;
global $bridge_qode_options;
$sub = "";
$indent = ( $depth > 0 ? str_repeat( "\t", $depth ) : '' ); // code indent
if($depth >=0 && $args->has_children) :
$sub = ' has_sub';
endif;
// passed classes
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$class_names = esc_attr( implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) ) );
$anchor = '';
if($item->anchor != ""){
$anchor = '#'.esc_attr($item->anchor);
}
$active = "";
// depth dependent classes
if ($item->anchor == "" && (($item->current && $depth == 0) || ($item->current_item_ancestor && $depth == 0))):
$active = 'active';
endif;
// build html
$output .= $indent . '<li id="mobile-menu-item-'. $item->ID . '" class="' . $class_names . ' ' . $active . $sub .'">';
$current_a = "";
// 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 .= ' href="' . esc_attr( $item->url ) .$anchor.'"';
if (($item->current && $depth == 0) || ($item->current_item_ancestor && $depth == 0) ):
$current_a .= ' current ';
endif;
$attributes .= ' class="'. $current_a . '"';
$item_output = $args->before;
if($item->hide == ""){
if($item->nolink == ""){
$item_output .= '<a'. $attributes .'>';
}else{
$item_output .= '<h3>';
}
$item_output .= $args->link_before .apply_filters( 'the_title', $item->title, $item->ID );
$item_output .= $args->link_after;
if($item->nolink == ""){
$item_output .= '</a><span class="mobile_arrow"><i class="fa fa-angle-right"></i><i class="fa fa-angle-down"></i></span>';
}else{
$item_output .= '</h3><span class="mobile_arrow"><i class="fa fa-angle-right"></i><i class="fa fa-angle-down"></i></span>';
}
}
$item_output .= $args->after;
// build html
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
}