'flyout', 'align' => 'bottom-left', 'icon' => 'disabled', 'hide_text' => 'false', 'disable_link' => 'false', 'hide_on_mobile' => 'false', 'hide_on_desktop' => 'false', 'close_after_click' => 'false', 'hide_sub_menu_on_mobile' => 'false', 'hide_arrow' => 'false', 'item_align' => 'left', 'icon_position' => 'left', 'panel_columns' => 6, // total number of columns displayed in the panel. 'mega_menu_columns' => 1, // for sub menu items, how many columns to span in the panel. 'mega_menu_order' => 0, 'collapse_children' => 'false', 'submenu_columns' => 1, ); return apply_filters( 'megamenu_menu_item_defaults', $defaults ); } /** * Constructor * * @since 1.0 */ public function __construct() { add_action( 'admin_init', array( $this, 'register_nav_meta_box' ), 9 ); add_action( 'megamenu_nav_menus_scripts', array( $this, 'enqueue_menu_page_scripts' ), 10 ); add_action( 'wp_ajax_mm_save_settings', array( $this, 'save' ) ); add_filter( 'hidden_meta_boxes', array( $this, 'show_mega_menu_metabox' ) ); add_filter( 'siteorigin_panels_is_admin_page', array( $this, 'enable_site_origin_page_builder' ) ); if ( function_exists( 'siteorigin_panels_admin_enqueue_scripts' ) ) { add_action( 'admin_print_scripts-nav-menus.php', array( $this, 'siteorigin_panels_admin_enqueue_scripts' ) ); } if ( function_exists( 'siteorigin_panels_admin_enqueue_styles' ) ) { add_action( 'admin_print_styles-nav-menus.php', array( $this, 'siteorigin_panels_admin_enqueue_styles' ) ); } } /** * Enqueue Site Origin Page Builder scripts on nav-menus page. * * @since 2.3.7 * @param bool $enabled - Whether or not to load the Page Builder scripts */ public function enable_site_origin_page_builder( $enabled ) { $screen = get_current_screen(); if ( 'nav-menus' === $screen->base ) { return true; } return $enabled; } /** * Enqueue Page Builder scripts (https://wordpress.org/plugins/siteorigin-panels/) * * @since 1.9 */ public function siteorigin_panels_admin_enqueue_scripts() { siteorigin_panels_admin_enqueue_scripts( '', true ); } /** * Enqueue Page Builder styles (https://wordpress.org/plugins/siteorigin-panels/) * * @since 1.9 */ public function siteorigin_panels_admin_enqueue_styles() { siteorigin_panels_admin_enqueue_styles( '', true ); } /** * By default the mega menu meta box is hidden - show it. * * @since 1.0 * @param array $hidden Meta boxes that are hidden from the nav-menus.php page * @return array */ public function show_mega_menu_metabox( $hidden ) { if ( is_array( $hidden ) && count( $hidden ) > 0 ) { foreach ( $hidden as $key => $value ) { if ( 'mega_menu_meta_box' === $value ) { unset( $hidden[ $key ] ); } if ( 'add-product_cat' === $value ) { unset( $hidden[ $key ] ); } if ( 'add-product_tag' === $value ) { unset( $hidden[ $key ] ); } } } return $hidden; } /** * Adds the meta box container * * @since 1.0 */ public function register_nav_meta_box() { global $pagenow; $capability = apply_filters( 'megamenu_options_capability', 'edit_theme_options' ); if ( ! current_user_can( $capability ) ) { return; } if ( 'nav-menus.php' === $pagenow ) { add_meta_box( 'mega_menu_meta_box', __( 'Max Mega Menu Settings', 'megamenu' ), array( $this, 'metabox_contents' ), 'nav-menus', 'side', 'high' ); } } /** * Enqueue required CSS and JS for the mega menu lightbox and meta options * * @since 1.0 */ public function enqueue_menu_page_scripts( $hook ) { if ( ! in_array( $hook, array( 'nav-menus.php' ) ) ) { return; } $capability = apply_filters( 'megamenu_options_capability', 'edit_theme_options' ); if ( ! current_user_can( $capability ) ) { return; } // Compatibility fix for SlideDeck Pro wp_deregister_script( 'codemirror' ); wp_deregister_style( 'codemirror' ); // Compatibility fix for Pinboard Theme wp_deregister_script( 'colorbox' ); wp_deregister_style( 'colorbox' ); // Compatibility fix for AGP Font Awesome Collection wp_deregister_script( 'colorbox-js' ); wp_deregister_style( 'colorbox-css' ); // Compatibility fix for purple-xmls-google-product-feed-for-woocommerce wp_deregister_script( 'cart-product-colorbox' ); wp_deregister_style( 'cart-product-colorstyle' ); // Compatibility fix for WordFence wp_deregister_script( 'jquery.wfcolorbox' ); wp_deregister_style( 'wordfence-colorbox-style' ); // Compatibility fix for Profit Builder wp_deregister_script( 'color-box-min' ); wp_deregister_script( 'color-box' ); wp_deregister_style( 'color-box-css' ); // Compatibility fix for Reamaze wp_deregister_script( 'jquery-colorbox' ); wp_deregister_style( 'colorbox-css' ); // Compatibility fix for WP Disquz media uploader wp_deregister_script( 'wmu-colorbox-js' ); wp_deregister_style( 'wmu-colorbox-css' ); // Compatibility fix for TemplatesNext ToolKit wp_deregister_script( 'tx-main' ); wp_deregister_style( 'tx-toolkit-admin-style' ); wp_enqueue_style( 'colorbox', MEGAMENU_BASE_URL . 'js/colorbox/colorbox.css', false, MEGAMENU_VERSION ); wp_enqueue_style( 'maxmegamenu', MEGAMENU_BASE_URL . 'css/admin/admin.css', false, MEGAMENU_VERSION ); wp_enqueue_script( 'maxmegamenu', MEGAMENU_BASE_URL . 'js/admin.js', array( 'jquery', 'jquery-ui-core', 'jquery-ui-sortable', ), MEGAMENU_VERSION ); wp_enqueue_script( 'colorbox', MEGAMENU_BASE_URL . 'js/colorbox/jquery.colorbox-min.js', array( 'jquery' ), MEGAMENU_VERSION ); $settings = get_option( 'megamenu_settings' ); $prefix = isset( $settings['prefix'] ) ? $settings['prefix'] : 'true'; wp_localize_script( 'maxmegamenu', 'megamenu', array( 'debug_launched' => __( 'Launched for Menu ID', 'megamenu' ), 'launch_lightbox' => __( 'Mega Menu', 'megamenu' ), 'is_disabled_error' => __( 'Please enable Max Mega Menu using the settings on the left of this page.', 'megamenu' ), 'save_menu' => __( 'Please save the menu structure to enable this option.', 'megamenu' ), 'unsaved_changes' => __( 'The changes you made will be lost if you navigate away from this page.', 'megamenu'), 'saving' => __( 'Saving', 'megamenu' ), 'nonce' => wp_create_nonce( 'megamenu_edit' ), 'nonce_check_failed' => __( 'Oops. Something went wrong. Please reload the page.', 'megamenu' ), 'css_prefix' => $prefix, 'css_prefix_message' => __( "Custom CSS Classes will be prefixed with 'mega-'", 'megamenu' ), 'row_is_full' => __( 'There is not enough space in this row to add a new column. Make space by reducing the width of the columns within the row or create a new row.', 'megamenu' ), ) ); do_action( 'megamenu_enqueue_admin_scripts' ); } /** * Show the Meta Menu settings * * @since 1.0 */ public function metabox_contents() { $menu_id = $this->get_selected_menu_id(); $this->print_enable_megamenu_options( $menu_id ); } /** * Save the mega menu settings (submitted from Menus Page Meta Box) * * @since 1.0 */ public function save() { check_ajax_referer( 'megamenu_edit', 'nonce' ); $capability = apply_filters( 'megamenu_options_capability', 'edit_theme_options' ); if ( ! current_user_can( $capability ) ) { return; } if ( isset( $_POST['menu'] ) && $_POST['menu'] > 0 && is_nav_menu( $_POST['menu'] ) && isset( $_POST['megamenu_meta'] ) ) { $raw_submitted_settings = $_POST['megamenu_meta']; $parsed_submitted_settings = json_decode( stripslashes( $raw_submitted_settings ), true ); $submitted_settings = array(); foreach ( $parsed_submitted_settings as $index => $value ) { $name = $value['name']; preg_match_all( '/\[(.*?)\]/', $name, $matches ); // find values between square brackets. if ( isset( $matches[1][0] ) && isset( $matches[1][1] ) ) { $location = $matches[1][0]; $setting = $matches[1][1]; $submitted_settings[ $location ][ $setting ] = $value['value']; } } $submitted_settings = apply_filters( 'megamenu_submitted_settings_meta', $submitted_settings ); if ( ! get_option( 'megamenu_settings' ) ) { update_option( 'megamenu_settings', $submitted_settings ); } else { $existing_settings = get_option( 'megamenu_settings' ); foreach ( $submitted_settings as $location => $settings ) { if ( isset( $existing_settings[ $location ] ) ) { $existing_settings[ $location ] = array_merge( $existing_settings[ $location ], $settings ); if ( ! isset( $settings['enabled'] ) ) { unset( $existing_settings[ $location ]['enabled'] ); } } else { $existing_settings[ $location ] = $settings; } } update_option( 'megamenu_settings', $existing_settings ); } do_action( 'megamenu_after_save_settings' ); do_action( 'megamenu_delete_cache' ); } wp_die(); } /** * Print the custom Meta Box settings * * @param int $menu_id * @since 1.0 */ public function print_enable_megamenu_options( $menu_id ) { $tagged_menu_locations = $this->get_tagged_theme_locations_for_menu_id( $menu_id ); $theme_locations = get_registered_nav_menus(); $saved_settings = get_option( 'megamenu_settings' ); if ( ! count( $theme_locations ) ) { echo "
"; $link = '' . __( 'here', 'megamenu' ) . ''; echo '

' . esc_html__( 'There are currently no menu locations registered by your theme.', 'megamenu' ) . '

'; echo '

' . esc_html__( 'Go to Mega Menu > Menu Locations to create a new menu location.', 'megamenu' ) . '

'; echo '

' . esc_html__( 'Then use the Max Mega Menu block, widget or shortcode to output the menu location on your site.', 'megamenu' ) . '

'; echo "
"; } elseif ( ! count( $tagged_menu_locations ) ) { echo "
"; echo '

' . esc_html__( 'Please assign this menu to a theme location to enable the Mega Menu settings.', 'megamenu' ) . '

'; echo '

' . esc_html__( "To assign this menu to a theme location, scroll to the bottom of this page and tag the menu to a 'Display location'.", 'megamenu' ) . '

'; echo "
"; } else { ?>
$name ) { if ( isset( $tagged_menu_locations[ $location ] ) ) { $open_class = count( $tagged_menu_locations ) === 1 ? ' mega-accordion-open' : ''; $last_class = $i + 1 == count( $tagged_menu_locations ) ? ' mega-last' : ''; $edit_url = admin_url( "admin.php?page=maxmegamenu&location={$location}" ); $i++; $is_enabled_class = ''; if ( max_mega_menu_is_enabled( $location ) ) { $is_enabled_class = ' mega-location-enabled'; } $has_active_location_class = ''; $active_instance = 0; if ( isset( $saved_settings[ $location ]['active_instance'] ) ) { $active_instance = $saved_settings[ $location ]['active_instance']; } elseif ( isset( $saved_settings['instances'][ $location ] ) ) { $active_instance = $saved_settings['instances'][ $location ]; } if ( $active_instance > 0 ) { $has_active_location_class = ' mega-has-active-location'; } ?>

settings_table( $location, $saved_settings ); ?>
/>
$name ) { if ( isset( $nav_menu_locations[ $id ] ) && $nav_menu_locations[ $id ] == $menu_id ) { $locations[ $id ] = $name; } } return $locations; } /** * Get the current menu ID. * * Most of this taken from wp-admin/nav-menus.php (no built in functions to do this) * * @since 1.0 * @return int */ public function get_selected_menu_id() { $nav_menus = wp_get_nav_menus( array( 'orderby' => 'name' ) ); $menu_count = count( $nav_menus ); $nav_menu_selected_id = isset( $_REQUEST['menu'] ) ? (int) $_REQUEST['menu'] : 0; $add_new_screen = ( isset( $_GET['menu'] ) && 0 == $_GET['menu'] ) ? true : false; // If we have one theme location, and zero menus, we take them right into editing their first menu. $page_count = wp_count_posts( 'page' ); $one_theme_location_no_menus = ( 1 == count( get_registered_nav_menus() ) && ! $add_new_screen && empty( $nav_menus ) && ! empty( $page_count->publish ) ) ? true : false; // Get recently edited nav menu. $recently_edited = absint( get_user_option( 'nav_menu_recently_edited' ) ); if ( empty( $recently_edited ) && is_nav_menu( $nav_menu_selected_id ) ) { $recently_edited = $nav_menu_selected_id; } // Use $recently_edited if none are selected. if ( empty( $nav_menu_selected_id ) && ! isset( $_GET['menu'] ) && is_nav_menu( $recently_edited ) ) { $nav_menu_selected_id = $recently_edited; } // On deletion of menu, if another menu exists, show it. if ( ! $add_new_screen && 0 < $menu_count && isset( $_GET['action'] ) && 'delete' == $_GET['action'] ) { $nav_menu_selected_id = $nav_menus[0]->term_id; } // Set $nav_menu_selected_id to 0 if no menus. if ( $one_theme_location_no_menus ) { $nav_menu_selected_id = 0; } elseif ( empty( $nav_menu_selected_id ) && ! empty( $nav_menus ) && ! $add_new_screen ) { // if we have no selection yet, and we have menus, set to the first one in the list. $nav_menu_selected_id = $nav_menus[0]->term_id; } return $nav_menu_selected_id; } } endif;