HEX
Server: Apache
System: Linux uws7-179.cafe24.com 3.10.0-1160.119.1p.el7.x86_64 #1 SMP Thu Sep 11 14:15:01 KST 2025 x86_64
User: medikors (1589)
PHP: 7.3.1p1
Disabled: mysql_pconnect
Upload Files
File: /medikors/www/eng/wp-content/themes/jupiterx-1/lib/render/menu.php
<?php
/**
 * Sets up the Jupiter menus.
 *
 * @package JupiterX\Framework\Render
 *
 * @since   1.0.0
 */
jupiterx_add_smart_action( 'after_setup_theme', 'jupiterx_do_register_default_menu' );
/**
 * Register default menu.
 *
 * @since 1.0.0
 *
 * @return void
 */
function jupiterx_do_register_default_menu() {

	// Stop here if doing ajax or a menu already exists.
	if ( wp_doing_ajax() || wp_get_nav_menus() ) {
		return;
	}

	// Check TGMPA for template installing proccess to avoid adding nav menu item.
	if ( 'tgmpa-install-plugins' === jupiterx_get( 'page' ) ) {
		return;
	}

	$name = __( 'Navigation', 'jupiterx' );

	// Set up a default menu if it doesn't exist.
	if ( ! wp_get_nav_menu_object( $name ) ) {
		wp_update_nav_menu_item(
			wp_create_nav_menu( $name ),
			0,
			array(
				'menu-item-title'   => __( 'Home', 'jupiterx' ),
				'menu-item-classes' => 'home',
				'menu-item-url'     => home_url( '/' ),
				'menu-item-status'  => 'publish',
			)
		);
	}
}

jupiterx_add_smart_action( 'after_setup_theme', 'jupiterx_do_register_nav_menus' );
/**
 * Register nav menus.
 *
 * @since 1.0.0
 *
 * @return void
 */
function jupiterx_do_register_nav_menus() {
	register_nav_menus( array(
		'primary'   => __( 'Primary Menu', 'jupiterx' ),
		'subfooter' => __( 'Sub Footer Menu', 'jupiterx' ),
	) );
}

// Filter.
jupiterx_add_smart_action( 'wp_nav_menu_args', 'jupiterx_modify_menu_args' );
/**
 * Modify wp_nav_menu arguments.
 *
 * This function converts the wp_nav_menu to Bootstrap format. It uses the Jupiter custom walker and also makes
 * use of the Jupiter HTML API.
 *
 * @since 1.0.0
 *
 * @param array $args The wp_nav_menu arguments.
 *
 * @return array The modified wp_nav_menu arguments.
 * @SuppressWarnings(PHPMD.NPathComplexity)
 */
function jupiterx_modify_menu_args( $args ) {
	// Get type.
	$type = jupiterx_get( 'jupiterx_type', $args );

	// Check if the menu is in a widget area and set the type accordingly if it is defined.
	$widget_area_type = jupiterx_get_widget_area( 'jupiterx_type' );

	if ( $widget_area_type ) {
		$type = 'stack' === $widget_area_type ? '' : $widget_area_type;
	}

	// Stop if it isn't a Jupiter menu.
	if ( ! $type ) {
		return $args;
	}

	// Default item wrap attributes.
	$attr = array(
		'id'    => '%1$s',
		'class' => array( jupiterx_get( 'menu_class', $args ) ),
	);

	// Add UIkit offcanvas item wrap attributes.
	if ( 'offcanvas' === $type ) {
		$attr['class'][]     = 'uk-nav uk-nav-parent-icon uk-nav-offcanvas';
		$attr['data-uk-nav'] = '{multiple:true}';
	}

	// Implode to avoid empty spaces.
	$attr['class'] = implode( ' ', array_filter( $attr['class'] ) );

	// Set to null if empty to avoid outputing an empty HTML class attribute.
	if ( ! $attr['class'] ) {
		$attr['class'] = null;
	}

	$location = jupiterx_get( 'theme_location', $args );

	$location_subfilter = $location ? "[_{$location}]" : null;

	// Force Jupiter menu arguments.
	$force = array(
		'jupiterx_type' => $type,
		'items_wrap' => jupiterx_open_markup( "jupiterx_menu[_{$type}]{$location_subfilter}", 'ul', $attr, $args ) . '%3$s' . jupiterx_close_markup( "jupiterx_menu[_{$type}]{$location_subfilter}", 'ul', $args ),
	);

	// Allow walker overwrite.
	if ( ! jupiterx_get( 'walker', $args ) ) {
		$args['walker'] = new _JupiterX_Walker_Nav_Menu();
	}

	// Adapt level to walker depth.
	$level = jupiterx_get( 'jupiterx_start_level', $args );

	$force['jupiterx_start_level'] = $level ? $level - 1 : 0;

	return array_merge( $args, $force );
}