| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478 |
- <?php
- /*
- * Plugin Name: Max Mega Menu
- * Plugin URI: https://www.megamenu.com
- * Description: An easy to use mega menu plugin. Written the WordPress way.
- * Version: 2.5.2
- * Author: megamenu.com
- * Author URI: https://www.megamenu.com
- * License: GPL-2.0+
- * Copyright: 2018 Tom Hemsley (https://www.megamenu.com)
- */
- if ( ! defined( 'ABSPATH' ) ) {
- exit; // disable direct access
- }
- if ( ! class_exists( 'Mega_Menu' ) ) :
- /**
- * Main plugin class
- */
- final class Mega_Menu {
- /**
- * @var string
- */
- public $version = '2.5.2';
- /**
- * @var string
- */
- public $scss_last_updated = '2.4.1.3';
- /**
- * Init
- *
- * @since 1.0
- */
- public static function init() {
- $plugin = new self();
- }
- /**
- * Constructor
- *
- * @since 1.0
- */
- public function __construct() {
- $this->define_constants();
- $this->includes();
- add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
- add_action( 'admin_init', array( $this, 'install_upgrade_check' ) );
- add_action( 'admin_notices', array( $this, 'admin_notices' ) );
- add_action( 'widgets_init', array( $this, 'register_widget' ) );
- add_filter( 'in_widget_form', array( $this, 'add_notice_to_nav_menu_widget' ) , 10, 3 );
- add_action( 'after_setup_theme', array( $this, 'register_nav_menus' ) );
- add_filter( 'wp_nav_menu_args', array( $this, 'modify_nav_menu_args' ), 99999 );
- add_filter( 'wp_nav_menu', array( $this, 'add_responsive_toggle' ), 10, 2 );
- add_filter( 'wp_nav_menu_objects', array( $this, 'add_widgets_to_menu' ), apply_filters("megamenu_wp_nav_menu_objects_priority", 10), 2 );
- add_filter( 'megamenu_nav_menu_objects_before', array( $this, 'setup_menu_items' ), 5, 2 );
- add_filter( 'megamenu_nav_menu_objects_after', array( $this, 'reorder_menu_items_within_megamenus' ), 6, 2 );
- add_filter( 'megamenu_nav_menu_objects_after', array( $this, 'apply_classes_to_menu_items' ), 7, 2 );
- add_filter( 'megamenu_nav_menu_objects_after', array( $this, 'set_descriptions_if_enabled' ), 8, 2 );
- add_filter( 'body_class', array($this, 'add_megamenu_body_classes'), 10, 1);
- add_filter( 'megamenu_nav_menu_css_class', array( $this, 'prefix_menu_classes' ) );
- // plugin compatibility
- add_filter( 'conditional_menus_theme_location', array( $this, 'conditional_menus_restore_theme_location'), 10, 3 );
- add_filter( 'black_studio_tinymce_enable_pages' , array($this, 'megamenu_blackstudio_tinymce' ) );
- add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts'), 11 );
- add_action( 'admin_print_footer_scripts-nav-menus.php', array( $this, 'admin_print_footer_scripts' ) );
- add_action( 'admin_print_scripts-nav-menus.php', array( $this, 'admin_print_scripts' ) );
- add_action( 'admin_print_styles-nav-menus.php', array( $this, 'admin_print_styles' ) );
- add_shortcode( 'maxmenu', array( $this, 'register_shortcode' ) );
- add_shortcode( 'maxmegamenu', array( $this, 'register_shortcode' ) );
- if ( is_admin() ) {
- new Mega_Menu_Nav_Menus();
- new Mega_Menu_Widget_Manager();
- new Mega_Menu_Menu_Item_Manager();
- new Mega_Menu_Settings();
- }
- if ( class_exists( 'Mega_Menu_Toggle_Blocks' ) ) {
- new Mega_Menu_Toggle_Blocks();
- }
- $mega_menu_style_manager = new Mega_Menu_Style_Manager();
- $mega_menu_style_manager->setup_actions();
- }
- /**
- * Add a body class for each active mega menu location.
- *
- * @since 2.3
- * @param array $classes
- * @return array
- */
- public function add_megamenu_body_classes( $classes ) {
- $locations = get_nav_menu_locations();
- if ( count( $locations ) ) {
- foreach ( $locations as $location => $id ) {
- if ( has_nav_menu( $location ) && max_mega_menu_is_enabled( $location ) ) {
- $classes[] = 'mega-menu-' . str_replace( "_", "-", $location );
- }
- }
- }
- return $classes;
- }
- /**
- * Add custom actions to allow enqueuing scripts on specific pages
- *
- * @since 1.8.3
- */
- public function admin_enqueue_scripts( $hook ) {
- wp_enqueue_style( 'maxmegamenu-global', MEGAMENU_BASE_URL . 'css/admin/global.css', array(), MEGAMENU_VERSION );
- if ( ! wp_script_is('maxmegamenu') ) {
- if ( 'nav-menus.php' == $hook ) {
- // load widget scripts and styles first to allow us to dequeue conflicting colorbox scripts from other plugins
- do_action( 'sidebar_admin_setup' );
- do_action( 'admin_enqueue_scripts', 'widgets.php' );
- do_action( 'megamenu_nav_menus_scripts', $hook );
- }
- if ( strpos( $hook, 'maxmegamenu' ) !== false ) {
- do_action( 'megamenu_admin_scripts', $hook );
- }
- }
- }
- /**
- * Print the widgets.php scripts on the nav-menus.php page. Required for 4.8 Core Media Widgets.
- *
- * @since 2.3.7
- */
- public function admin_print_footer_scripts( $hook ) {
- do_action( 'admin_footer-widgets.php' );
- }
- /**
- * Print the widgets.php scripts on the nav-menus.php page. Required for 4.8 Core Media Widgets.
- *
- * @since 2.3.7
- */
- public function admin_print_scripts( $hook ) {
- do_action( 'admin_print_scripts-widgets.php' );
- }
- /**
- * Print the widgets.php scripts on the nav-menus.php page. Required for 4.8 Core Media Widgets.
- *
- * @since 2.3.7
- */
- public function admin_print_styles( $hook ) {
- do_action( 'admin_print_styles-widgets.php' );
- }
- /**
- * Register menu locations created within Max Mega Menu.
- *
- * @since 1.8
- */
- public function register_nav_menus() {
- $locations = get_option('megamenu_locations');
- if ( is_array( $locations ) && count( $locations ) ) {
- foreach ( $locations as $key => $val ) {
- register_nav_menu( $key, $val );
- }
- }
- }
- /**
- * Black Studio TinyMCE Compatibility.
- * Load TinyMCE assets on nav-menus.php page.
- *
- * @since 1.8
- * @param array $pages
- * @return array $pages
- */
- public function megamenu_blackstudio_tinymce( $pages ) {
- $pages[] = 'nav-menus.php';
- return $pages;
- }
- /**
- * Detect new or updated installations and run actions accordingly.
- *
- * @since 1.3
- */
- public function install_upgrade_check() {
- $version = get_option( "megamenu_version" );
- if ( $version ) {
- if ( version_compare( $this->version, $version, '!=' ) ) {
- update_option( "megamenu_version", $this->version );
- do_action( "megamenu_after_update" );
- }
- } else {
- add_option( "megamenu_version", $this->version );
- add_option( "megamenu_initial_version", $this->version );
- add_option( "megamenu_multisite_share_themes", 'false' );
- do_action( "megamenu_after_install" );
- $settings = get_option( "megamenu_settings" );
- // set defaults
- if ( ! $settings ) {
- $settings['prefix'] = 'disabled';
- $settings['descriptions'] = 'enabled';
- add_option( "megamenu_settings", $settings);
- }
- }
- }
- /**
- * Register widget
- *
- * @since 1.7.4
- */
- public function register_widget() {
- register_widget( 'Mega_Menu_Widget' );
- }
- /**
- * Shortcode used to display a menu
- *
- * @since 1.3
- * @return string
- */
- public function register_shortcode( $atts ) {
- if ( ! isset( $atts['location'] ) ) {
- return false;
- }
- if ( has_nav_menu( $atts['location'] ) ) {
- return wp_nav_menu( array( 'theme_location' => $atts['location'], 'echo' => false ) );
- }
- return "<!-- menu not found [maxmegamenu location={$atts['location']}] -->";
- }
- /**
- * Initialise translations
- *
- * @since 1.0
- */
- public function load_plugin_textdomain() {
- load_plugin_textdomain( 'megamenu', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
- }
- /**
- * Define Mega Menu constants
- *
- * @since 1.0
- */
- private function define_constants() {
- define( 'MEGAMENU_VERSION', $this->version );
- define( 'MEGAMENU_BASE_URL', trailingslashit( plugins_url( 'megamenu' ) ) );
- define( 'MEGAMENU_PATH', plugin_dir_path( __FILE__ ) );
- }
- /**
- * All Mega Menu classes
- *
- * @since 1.0
- */
- private function plugin_classes() {
- $classes = array(
- 'mega_menu_walker' => MEGAMENU_PATH . 'classes/walker.class.php',
- 'mega_menu_widget_manager' => MEGAMENU_PATH . 'classes/widget-manager.class.php',
- 'mega_menu_menu_item_manager' => MEGAMENU_PATH . 'classes/menu-item-manager.class.php',
- 'mega_menu_nav_menus' => MEGAMENU_PATH . 'classes/nav-menus.class.php',
- 'mega_menu_style_manager' => MEGAMENU_PATH . 'classes/style-manager.class.php',
- 'mega_menu_settings' => MEGAMENU_PATH . 'classes/settings.class.php',
- 'mega_menu_widget' => MEGAMENU_PATH . 'classes/widget.class.php',
- 'mega_menu_toggle_blocks' => MEGAMENU_PATH . 'classes/toggle-blocks.class.php',
- 'scssc' => MEGAMENU_PATH . 'classes/scssc.inc.php'
- );
- return $classes;
- }
- /**
- * Load required classes
- *
- * @since 1.0
- */
- private function includes() {
- $autoload_is_disabled = defined( 'MEGAMENU_AUTOLOAD_CLASSES' ) && MEGAMENU_AUTOLOAD_CLASSES === false;
- if ( function_exists( "spl_autoload_register" ) && ! $autoload_is_disabled ) {
- // >= PHP 5.2 - Use auto loading
- if ( function_exists( "__autoload" ) ) {
- spl_autoload_register( "__autoload" );
- }
- spl_autoload_register( array( $this, 'autoload' ) );
- } else {
- // < PHP5.2 - Require all classes
- foreach ( $this->plugin_classes() as $id => $path ) {
- if ( is_readable( $path ) && ! class_exists( $id ) ) {
- require_once $path;
- }
- }
- }
- $template = get_template();
- if ($template == 'zerif-pro') {
- $template = 'zerif';
- }
- switch ( $template ) {
- case "twentyseventeen":
- case "generatepress":
- case "twentytwelve":
- case "zerif":
- if ( is_readable( MEGAMENU_PATH . "integration/{$template}/functions.php" ) ) {
- require_once( MEGAMENU_PATH . "integration/{$template}/functions.php" );
- }
- break;
- }
- }
- /**
- * Autoload classes to reduce memory consumption
- *
- * @since 1.0
- * @param string $class
- */
- public function autoload( $class ) {
- $classes = $this->plugin_classes();
- $class_name = strtolower( $class );
- if ( isset( $classes[ $class_name ] ) && is_readable( $classes[ $class_name ] ) ) {
- require_once $classes[ $class_name ];
- }
- }
- /**
- * Appends "mega-" to all menu classes.
- * This is to help avoid theme CSS conflicts.
- *
- * @since 1.0
- * @param array $classes
- * @return array
- */
- public function prefix_menu_classes( $classes ) {
- $return = array();
- foreach ( $classes as $class ) {
- $return[] = 'mega-' . $class;
- }
- $settings = get_option( 'megamenu_settings' );
- $prefix = isset( $settings['prefix'] ) ? $settings['prefix'] : 'enabled';
- if ( $prefix === 'disabled' ) {
- // add in custom classes, sans 'mega-' prefix
- foreach ( $classes as $class ) {
- // custom classes are added before the 'menu-item' class
- if ( $class == 'menu-item' ) {
- break;
- }
- if ( in_array( $class, array( 'menu-column', 'menu-row', 'hide-on-mobile', 'hide-on-desktop') ) ) { // these are always prefixed
- continue;
- }
- if ( strpos( $class, "menu-columns-" ) !== FALSE ) { // mega-menu-columns-X-of-Y are always prefixed
- continue;
- }
- $return[] = $class;
- }
- }
- return $return;
- }
- /**
- * Add the html for the responsive toggle box to the menu
- *
- * @param string $nav_menu
- * @param object $args
- * @return string
- * @since 1.3
- */
- public function add_responsive_toggle( $nav_menu, $args ) {
- // make sure we're working with a Mega Menu
- if ( ! is_a( $args->walker, 'Mega_Menu_Walker' ) )
- return $nav_menu;
- $find = 'class="' . $args->container_class . '">';
- $theme_id = mmm_get_theme_id_for_location( $args->theme_location );
- $content = "";
- $content = apply_filters( "megamenu_toggle_bar_content", $content, $nav_menu, $args, $theme_id );
- $replace = $find . '<div class="mega-menu-toggle" tabindex="0">' . $content . '</div>';
- return str_replace( $find, $replace, $nav_menu );
- }
- /**
- * Append the widget objects to the menu array before the
- * menu is processed by the walker.
- *
- * @since 1.0
- * @param array $items - All menu item objects
- * @param object $args
- * @return array - Menu objects including widgets
- */
- public function add_widgets_to_menu( $items, $args ) {
- // make sure we're working with a Mega Menu
- if ( ! is_a( $args->walker, 'Mega_Menu_Walker' ) ) {
- return $items;
- }
- $items = apply_filters( "megamenu_nav_menu_objects_before", $items, $args );
- $widget_manager = new Mega_Menu_Widget_Manager();
- $rolling_dummy_id = 999999999;
- $items_to_move = array();
- foreach ( $items as $item ) {
- // populate standard (non-grid) sub menus
- if ( $item->depth === 0 && $item->megamenu_settings['type'] == 'megamenu' || ( $item->depth === 1 && $item->parent_submenu_type == 'tabbed' && $item->megamenu_settings['type'] != 'grid' ) ) {
- $panel_widgets = $widget_manager->get_widgets_for_menu_id( $item->ID, $args->menu );
- if ( ! in_array( 'menu-megamenu', $item->classes ) ) {
- $item->classes[] = 'menu-megamenu';
- }
- if ( count( $panel_widgets ) ) {
- $widget_position = 0;
- $total_widgets_in_menu = count( $panel_widgets );
- $next_order = $this->menu_order_of_next_sibling( $item->ID, $item->menu_item_parent, $items );
- if ( ! in_array( 'menu-item-has-children', $item->classes ) ) {
- $item->classes[] = 'menu-item-has-children';
- }
- foreach ( $panel_widgets as $widget ) {
- $widget_settings = array_merge( Mega_Menu_Nav_Menus::get_menu_item_defaults(), array(
- 'mega_menu_columns' => absint( $widget['columns'] )
- ) );
- $menu_item = array(
- 'type' => 'widget',
- 'parent_submenu_type' => 'megamenu',
- 'title' => $widget['id'],
- 'content' => $widget_manager->show_widget( $widget['id'] ),
- 'menu_item_parent' => $item->ID,
- 'db_id' => 0, // This menu item does not have any childen
- 'ID' => $widget['id'],
- 'menu_order' => $next_order - $total_widgets_in_menu + $widget_position,
- 'megamenu_order' => $widget['order'],
- 'megamenu_settings' => $widget_settings,
- 'depth' => 1,
- 'classes' => array(
- "menu-item",
- "menu-item-type-widget",
- "menu-widget-class-" . $widget_manager->get_widget_class( $widget['id'] )
- )
- );
- $items[] = (object) $menu_item;
- $widget_position++;
- }
- }
- }
- // populate grid sub menus
- if ( $item->depth === 0 && $item->megamenu_settings['type'] == 'grid' || ( $item->depth === 1 && $item->parent_submenu_type == 'tabbed' && $item->megamenu_settings['type'] == 'grid' ) ) {
- $saved_grid = $widget_manager->get_grid_widgets_and_menu_items_for_menu_id( $item->ID, $args->menu->term_id );
- $next_order = $this->menu_order_of_next_sibling( $item->ID, $item->menu_item_parent, $items) - 999;
- foreach ( $saved_grid as $row => $row_data ) {
- $rolling_dummy_id++;
- $next_order++;
-
- if ( isset( $row_data['columns'] ) ) {
- if ( ! in_array( 'menu-item-has-children', $item->classes ) ) {
- $item->classes[] = 'menu-item-has-children';
- }
- if ( ! in_array( 'menu-megamenu', $item->classes ) ) {
- $item->classes[] = 'menu-megamenu';
- }
- $classes = array("menu-row");
- if ( isset( $row_data['meta']['class'] ) ) {
- $classes = array_merge( $classes, array_unique( explode( " ", $row_data['meta']['class'] ) ) );
- }
-
- $row_item = array(
- 'menu_item_parent' => $item->ID,
- 'type' => 'mega_row',
- 'title' => 'Custom Row',
- 'parent_submenu_type' => '',
- 'menu_order' => $next_order,
- 'depth' => 0,
- 'ID' => "{$item->ID}-{$row}",
- 'megamenu_settings' => Mega_Menu_Nav_Menus::get_menu_item_defaults(),
- 'db_id' => $rolling_dummy_id,
- 'classes' => $classes
- );
- $items[] = (object) $row_item;
- $row_dummy_id = $rolling_dummy_id;
- foreach ( $row_data['columns'] as $col => $col_data ) {
- $rolling_dummy_id++;
- $next_order++;
- $classes = array("menu-column");
- if ( isset( $col_data['meta']['class'] ) ) {
- $classes = array_merge( $classes, array_unique( explode( " ", $col_data['meta']['class'] ) ) );
- }
- if ( isset( $row_data['meta']['columns'] ) ) {
- $row_columns = $row_data['meta']['columns'];
- } else {
- $row_columns = 12;
- }
- if ( isset( $col_data['meta']['span'] ) ) {
- $classes[] = "menu-columns-{$col_data['meta']['span']}-of-{$row_columns}";
- }
- if ( isset( $col_data['meta']['hide-on-mobile'] ) && $col_data['meta']['hide-on-mobile'] == 'true' ) {
- $classes[] = "hide-on-mobile";
- }
- if ( isset( $col_data['meta']['hide-on-mobile'] ) && $col_data['meta']['hide-on-desktop'] == 'true' ) {
- $classes[] = "hide-on-desktop";
- }
- $col_item = array(
- 'menu_item_parent' => $row_dummy_id,
- 'type' => 'mega_column',
- 'title' => 'Custom Column',
- 'parent_submenu_type' => '',
- 'menu_order' => $next_order,
- 'depth' => 0,
- 'ID' => "{$item->ID}-{$row}-{$col}",
- 'megamenu_settings' => Mega_Menu_Nav_Menus::get_menu_item_defaults(),
- 'db_id' => $rolling_dummy_id,
- 'classes' => $classes
- );
- $items[] = (object) $col_item;
- if ( isset( $col_data['items'] ) ) {
- foreach ( $col_data['items'] as $key => $block ) {
- $next_order++;
- if ( $block['type'] == 'widget' ) {
- $widget_settings = array_merge( Mega_Menu_Nav_Menus::get_menu_item_defaults() );
- $menu_item = array(
- 'type' => 'widget',
- 'parent_submenu_type' => '',
- 'title' => '',
- 'content' => $widget_manager->show_widget( $block['id'] ),
- 'menu_item_parent' => $rolling_dummy_id,
- 'db_id' => 0, // This menu item does not have any childen
- 'ID' => $block['id'],
- 'menu_order' => $next_order,
- 'megamenu_order' => 0,
- 'megamenu_settings' => $widget_settings,
- 'depth' => 1,
- 'classes' => array(
- "menu-item",
- "menu-item-type-widget",
- "menu-widget-class-" . $widget_manager->get_widget_class( $block['id'] )
- )
- );
- $items[] = (object) $menu_item;
- } else {
- // mark this menu item to be moved into a new position
- $items_to_move[$block['id']] = array('new_parent' => $rolling_dummy_id, 'new_order' => $next_order);
- }
- }
- }
- }
- }
- }
- }
- }
- if ( count( $items_to_move ) ) {
- foreach ( $items_to_move as $id => $new_parent ) {
- $items_to_find[] = $id;
- }
- foreach ( $items as $item ) {
- if ( in_array( $item->ID, $items_to_find ) ) {
- $item->menu_item_parent = $items_to_move[ $item->ID ]['new_parent'];
- $item->menu_order = $items_to_move[ $item->ID ]['new_order'];
- }
- }
- }
- $items = apply_filters( "megamenu_nav_menu_objects_after", $items, $args );
- return $items;
- }
- /**
- * Return the menu order of the next sibling menu item.
- * Eg, given A as the $item_id, the menu order of D will be returned
- * Eg, given B as the $item_id, the menu order of C will be returned
- * Eg, given D as the $item_id, the menu order of D + 1000 will be returned
- *
- * - A
- * --- B
- * --- C
- * - D
- *
- * @since 2.0
- * @param int $item_id
- * @param array $items
- * @return int
- */
- private function menu_order_of_next_sibling( $item_id, $menu_item_parent, $items ) {
- $get_order_of_next_item = false;
- foreach ( $items as $key => $item ) {
- if ( $menu_item_parent != $item->menu_item_parent ) {
- continue;
- }
- if ( $item->type == 'widget' ) {
- continue;
- }
- if ( $get_order_of_next_item ) {
- return $item->menu_order;
- }
- if ( $item->ID == $item_id ) {
- $get_order_of_next_item = true;
- }
- if ( isset( $item->menu_order ) ) {
- $rolling_last_menu_order = $item->menu_order;
- }
- }
- // there isn't a next sibling
- return $rolling_last_menu_order + 1000;
- }
- /**
- * Setup the mega menu settings for each menu item
- *
- * @since 2.0
- * @param array $items - All menu item objects
- * @param object $args
- * @return array
- */
- public function setup_menu_items( $items, $args ) {
- // apply depth
- // @todo work out a better way to do this. Suggestions welcome..!
- $parents = array();
- foreach ( $items as $key => $item ) {
- if ( $item->menu_item_parent == 0 ) {
- $parents[] = $item->ID;
- $item->depth = 0;
- }
- }
- if ( count( $parents ) ) {
- foreach ( $items as $key => $item ) {
- if ( in_array( $item->menu_item_parent, $parents ) ) {
- $item->depth = 1;
- }
- }
- }
- // apply saved metadata to each menu item
- foreach ( $items as $item ) {
- $saved_settings = array_filter( (array) get_post_meta( $item->ID, '_megamenu', true ) );
- $item->megamenu_settings = array_merge( Mega_Menu_Nav_Menus::get_menu_item_defaults(), $saved_settings );
- $item->megamenu_order = isset( $item->megamenu_settings['mega_menu_order'][$item->menu_item_parent] ) ? $item->megamenu_settings['mega_menu_order'][$item->menu_item_parent] : 0;
- $item->parent_submenu_type = 'flyout';
- if ( isset( $item->menu_order ) ) {
- $item->menu_order = $item->menu_order * 1000;
- }
- // add parent mega menu type
- if ( $item->depth == 1 ) {
- $parent_settings = array_filter( (array) get_post_meta( $item->menu_item_parent, '_megamenu', true ) );
- if ( isset( $parent_settings['type'] ) ) {
- $item->parent_submenu_type = $parent_settings['type'];
- }
- }
- }
- return $items;
- }
- /**
- * Reorder items within the mega menu.
- *
- * @since 2.0
- * @param array $items
- * @param object $args
- * @return array
- */
- public function reorder_menu_items_within_megamenus( $items, $args ) {
- $new_items = array();
- $wpml_lang_items = array();
- // reorder menu items within mega menus based on internal ordering
- foreach ( $items as $item ) {
- // items ordered with 'forced' ordering
- if ( property_exists( $item, 'parent_submenu_type' ) && $item->parent_submenu_type == 'megamenu' && property_exists( $item, 'megamenu_order' ) && $item->megamenu_order !== 0 ) {
- if ( $parent_menu_item = get_post( $item->menu_item_parent ) ) {
- $item->menu_order = $parent_menu_item->menu_order * 1000 + $item->megamenu_order;
- }
- }
- }
- foreach ( $items as $item ) {
- if ( in_array( 'wpml-ls-item', $item->classes ) ) {
- $item->classes[] = 'menu-flyout';
- $wpml_lang_items[] = $item;
- } else {
- $new_items[ $item->menu_order ] = $item;
- }
- }
- ksort( $new_items );
- return array_merge( $new_items, $wpml_lang_items );
- }
- /**
- * If descriptions are enabled, create a new 'mega_description' property.
- * This is for backwards compatibility for users who have used filters
- * to display descriptions
- *
- * @since 2.3
- * @param array $items
- * @param array $args
- * @return array
- */
- public function set_descriptions_if_enabled( $items, $args ) {
- $settings = get_option( 'megamenu_settings' );
- $descriptions = isset( $settings['descriptions'] ) ? $settings['descriptions'] : 'disabled';
- if ($descriptions == 'enabled') {
- foreach ( $items as $item ) {
- if ( property_exists( $item, 'description' ) && strlen( $item->description ) ) {
- $item->mega_description = $item->description;
- $item->classes[] = 'has-description';
- }
- }
- }
- return $items;
- }
- /**
- * Apply column and clear classes to menu items (inc. widgets)
- *
- * @since 2.0
- * @param array $items
- * @param array $args
- * @return array
- */
- public function apply_classes_to_menu_items( $items, $args ) {
- $parents = array();
- foreach ( $items as $item ) {
- if ( ! in_array("menu-row", $item->classes) && ! in_array("menu-column", $item->classes) ) {
- if ( $item->depth === 0 ) {
- $item->classes[] = 'align-' . $item->megamenu_settings['align'];
- $item->classes[] = 'menu-' . $item->megamenu_settings['type'];
- }
- if ( $item->megamenu_settings['hide_arrow'] == 'true' ) {
- $item->classes[] = 'hide-arrow';
- }
- if ( $item->megamenu_settings['icon'] != 'disabled' ) {
- $item->classes[] = 'has-icon';
- }
- if ( $item->megamenu_settings['icon_position'] != 'left' ) {
- $item->classes[] = "icon-" . $item->megamenu_settings['icon_position'];
- }
- if ( $item->megamenu_settings['hide_text'] == 'true' && $item->depth === 0 ) {
- $item->classes[] = 'hide-text';
- }
- if ( $item->megamenu_settings['item_align'] != 'left' && $item->depth === 0 ) {
- $item->classes[] = 'item-align-' . $item->megamenu_settings['item_align'];
- }
- if ( $item->megamenu_settings['hide_on_desktop'] == 'true' ) {
- $item->classes[] = 'hide-on-desktop';
- }
- if ( $item->megamenu_settings['hide_on_mobile'] == 'true' ) {
- $item->classes[] = 'hide-on-mobile';
- }
- if ( $item->megamenu_settings['hide_sub_menu_on_mobile'] == 'true' ) {
- $item->classes[] = 'hide-sub-menu-on-mobile';
- }
- if ( $item->megamenu_settings['disable_link'] == 'true') {
- $item->classes[] = 'disable-link';
- }
- }
- // add column classes for second level menu items displayed in mega menus
- if ( $item->parent_submenu_type == 'megamenu' ) {
- $parent_settings = array_filter( (array) get_post_meta( $item->menu_item_parent, '_megamenu', true ) );
- $parent_settings = array_merge( Mega_Menu_Nav_Menus::get_menu_item_defaults(), $parent_settings );
- $span = $item->megamenu_settings['mega_menu_columns'];
- $total_columns = $parent_settings['panel_columns'];
- if ( $total_columns >= $span ) {
- $item->classes[] = "menu-columns-{$span}-of-{$total_columns}";
- $column_count = $span;
- } else {
- $item->classes[] = "menu-columns-{$total_columns}-of-{$total_columns}";
- $column_count = $total_columns;
- }
- if ( ! isset( $parents[ $item->menu_item_parent ] ) ) {
- $parents[ $item->menu_item_parent ] = $column_count;
- } else {
- $parents[ $item->menu_item_parent ] = $parents[ $item->menu_item_parent ] + $column_count;
- if ( $parents[ $item->menu_item_parent ] > $total_columns ) {
- $parents[ $item->menu_item_parent ] = $column_count;
- $item->classes[] = 'menu-clear';
- }
- }
- }
- }
- return $items;
- }
- /**
- * Use the Mega Menu walker to output the menu
- * Resets all parameters used in the wp_nav_menu call
- * Wraps the menu in mega-menu IDs and classes
- *
- * @since 1.0
- * @param $args array
- * @return array
- */
- public function modify_nav_menu_args( $args ) {
- if ( ! isset( $args['theme_location'] ) ) {
- return $args;
- }
- // internal action to use as a counter
- do_action('megamenu_instance_counter_' . $args['theme_location']);
- $num_times_called = did_action('megamenu_instance_counter_' . $args['theme_location']);
- $settings = get_option( 'megamenu_settings' );
- $current_theme_location = $args['theme_location'];
- $active_instance = isset( $settings['instances'][$current_theme_location] ) ? $settings['instances'][$current_theme_location] : 0;
- if ( $active_instance != 0 && $active_instance != $num_times_called ) {
- return $args;
- }
- $locations = get_nav_menu_locations();
- if ( isset ( $settings[ $current_theme_location ]['enabled'] ) && $settings[ $current_theme_location ]['enabled'] == true ) {
- if ( ! isset( $locations[ $current_theme_location ] ) ) {
- return $args;
- }
- $menu_id = $locations[ $current_theme_location ];
- if ( ! $menu_id ) {
- return $args;
- }
- $menu_theme = mmm_get_theme_for_location( $current_theme_location );
- $menu_settings = $settings[ $current_theme_location ];
- $effect = isset( $menu_settings['effect'] ) ? $menu_settings['effect'] : 'disabled';
- // convert Pro JS based effect to CSS3 effect
- if ( $effect == 'fadeUp' ) {
- $effect = 'fade_up';
- }
- // as set on the main settings page
- $vertical_behaviour = isset( $settings['mobile_behaviour'] ) ? $settings['mobile_behaviour'] : 'standard';
- if ( isset( $menu_settings['mobile_behaviour'] ) ) {
- $vertical_behaviour = $menu_settings['mobile_behaviour'];
- }
- // as set on the main settings page
- $second_click = isset( $settings['second_click'] ) ? $settings['second_click'] : 'close';
- if ( isset( $menu_settings['second_click'] ) ) {
- $second_click = $menu_settings['second_click'];
- }
- $unbind = isset( $settings['unbind'] ) ? $settings['unbind'] : 'enabled';
- if ( isset( $menu_settings['unbind'] ) ) {
- $unbind = $menu_settings['unbind'];
- }
- $event = 'hover_intent';
- if ( isset( $menu_settings['event'] ) ) {
- if ( $menu_settings['event'] == 'hover' ) {
- $event = 'hover_intent';
- } elseif ( $menu_settings['event'] == 'hover_' ) {
- $event = 'hover';
- } else {
- $event = $menu_settings['event'];
- }
- }
- $mobile_force_width = 'false';
-
- if ( isset( $menu_theme['mobile_menu_force_width'] ) && $menu_theme['mobile_menu_force_width'] == 'on' ) {
- if ( isset( $menu_theme['mobile_menu_force_width_selector'] ) ) {
- $mobile_force_width = $menu_theme['mobile_menu_force_width_selector'];
- } else {
- $mobile_force_width = 'body';
- }
- }
- $wrap_attributes = apply_filters("megamenu_wrap_attributes", array(
- "id" => '%1$s',
- "class" => '%2$s mega-no-js',
- "data-event" => $event,
- "data-effect" => $effect,
- "data-effect-speed" => isset( $menu_settings['effect_speed'] ) ? $menu_settings['effect_speed'] : '200',
- "data-effect-mobile" => isset( $menu_settings['effect_mobile'] ) ? $menu_settings['effect_mobile'] : 'disabled',
- "data-effect-speed-mobile" => isset( $menu_settings['effect_speed_mobile'] ) ? $menu_settings['effect_speed_mobile'] : '200',
- "data-panel-width" => preg_match('/^\d/', $menu_theme['panel_width']) !== 1 ? $menu_theme['panel_width'] : '',
- "data-panel-inner-width" => substr( $menu_theme['panel_inner_width'], -1 ) !== '%' ? $menu_theme['panel_inner_width'] : '',
- "data-mobile-force-width" => $mobile_force_width,
- "data-second-click" => $second_click,
- "data-document-click" => 'collapse',
- "data-vertical-behaviour" => $vertical_behaviour,
- "data-breakpoint" => absint( $menu_theme['responsive_breakpoint'] ),
- "data-unbind" => $unbind === "disabled" ? "false" : "true"
- ), $menu_id, $menu_settings, $settings, $current_theme_location );
- $attributes = "";
- foreach( $wrap_attributes as $attribute => $value ) {
- if ( strlen( $value ) ) {
- $attributes .= " " . $attribute . '="' . esc_attr( $value ) . '"';
- }
- }
- $sanitized_location = str_replace( apply_filters("megamenu_location_replacements", array("-", " ") ), "-", $current_theme_location );
- $defaults = array(
- 'menu' => wp_get_nav_menu_object( $menu_id ),
- 'container' => 'div',
- 'container_class' => 'mega-menu-wrap',
- 'container_id' => 'mega-menu-wrap-' . $sanitized_location,
- 'menu_class' => 'mega-menu max-mega-menu mega-menu-horizontal',
- 'menu_id' => 'mega-menu-' . $sanitized_location,
- 'fallback_cb' => 'wp_page_menu',
- 'before' => '',
- 'after' => '',
- 'link_before' => '',
- 'link_after' => '',
- 'items_wrap' => '<ul' . $attributes . '>%3$s</ul>',
- 'depth' => 0,
- 'walker' => new Mega_Menu_Walker()
- );
- $args = array_merge( $args, apply_filters( "megamenu_nav_menu_args", $defaults, $menu_id, $current_theme_location ) );
- }
- return $args;
- }
- /**
- * Display admin notices.
- */
- public function admin_notices() {
- if ( ! $this->is_compatible_wordpress_version() ) :
- ?>
- <div class="error">
- <p><?php _e( 'Max Mega Menu is not compatible with your version of WordPress. Please upgrade WordPress to the latest version or disable Max Mega Menu.', 'megamenu' ); ?></p>
- </div>
- <?php
- endif;
- if ( did_action('megamenu_after_install') === 1 ) :
- ?>
- <?php
- endif;
- $css_version = get_transient("megamenu_css_version");
- $css = get_transient("megamenu_css");
- if ( $css && version_compare( $this->scss_last_updated, $css_version, '>' ) ) :
- ?>
- <div class="updated">
- <?php
- $clear_cache_url = esc_url( add_query_arg(
- array(
- 'action' => 'megamenu_clear_css_cache'
- ),
- wp_nonce_url( admin_url("admin-post.php"), 'megamenu_clear_css_cache' )
- ) );
- $link = "<a href='{$clear_cache_url}'>" . __( "clear the CSS cache", 'megamenu' ) . "</a>";
- ?>
- <p><?php echo sprintf( __( 'Max Mega Menu has been updated. Please %s to ensure maximum compatibility with the latest version.', 'megamenu' ), $link); ?></p>
- </div>
- <?php
- endif;
- }
- /**
- * Checks this WordPress installation is v3.8 or above.
- * 3.8 is needed for dashicons.
- */
- public function is_compatible_wordpress_version() {
- global $wp_version;
- return $wp_version >= 3.8;
- }
- /**
- * Add compatibility for conditional menus plugin
- *
- * @since 2.2
- */
- public function conditional_menus_restore_theme_location( $location, $new_args, $old_args ) {
- return $old_args['theme_location'];
- }
- /**
- * Add a note to the Navigation Widget to explain that Max Mega Menu will not work with it.
- *
- * @since 2.5.1
- */
- public function add_notice_to_nav_menu_widget( $widget, $return, $instance ) {
- if ( 'nav_menu' == $widget->id_base ) {
- ?>
- <p style="font-size: 11px; font-style: italic;">
- <?php _e("If you are trying to display Max Mega Menu here, use the 'Max Mega Menu' widget instead.", "megamenu"); ?>
- <a href="https://www.megamenu.com/documentation/widget/" target="_blank"><?php _e("More information", "megamenu"); ?></a>
- </p>
- <?php
- }
- }
- }
- add_action( 'plugins_loaded', array( 'Mega_Menu', 'init' ), 10 );
- endif;
- if ( ! function_exists( 'mmm_get_theme_id_for_location' ) ) {
- /**
- * @since 2.1
- * @param string $location - theme location identifier
- */
- function mmm_get_theme_id_for_location( $location = false ) {
- if ( ! $location ) {
- return false;
- }
- if ( ! has_nav_menu( $location ) ) {
- return false;
- }
- // if a location has been passed, check to see if MMM has been enabled for the location
- $settings = get_option( 'megamenu_settings' );
- if ( is_array( $settings ) && isset( $settings[ $location ]['enabled'] ) && isset( $settings[ $location ]['theme'] ) ) {
- return $settings[ $location ]['theme'];
- }
- return false;
- }
- }
- if ( ! function_exists( 'mmm_get_theme_for_location' ) ) {
- /**
- * @since 2.0.2
- * @param string $location - theme location identifier
- */
- function mmm_get_theme_for_location( $location = false ) {
- if ( ! $location ) {
- return false;
- }
- if ( ! has_nav_menu( $location ) ) {
- return false;
- }
- // if a location has been passed, check to see if MMM has been enabled for the location
- $settings = get_option( 'megamenu_settings' );
- $style_manager = new Mega_Menu_Style_Manager();
- $themes = $style_manager->get_themes();
- if ( is_array( $settings ) && isset( $settings[ $location ]['enabled'] ) && isset( $settings[ $location ]['theme'] ) ) {
- $theme = $settings[ $location ]['theme'];
- $menu_theme = isset( $themes[ $theme ] ) ? $themes[ $theme ] : $themes['default'];
- return $menu_theme;
- }
- return $themes['default'];
- }
- }
- if ( ! function_exists( 'max_mega_menu_is_enabled' ) ) {
- /**
- * Determines if Max Mega Menu has been enabled for a given menu location.
- *
- * Usage:
- *
- * Max Mega Menu is enabled:
- * function_exists( 'max_mega_menu_is_enabled' )
- *
- * Max Mega Menu has been enabled for a theme location:
- * function_exists( 'max_mega_menu_is_enabled' ) && max_mega_menu_is_enabled( $location )
- *
- * @since 1.8
- * @param string $location - theme location identifier
- */
- function max_mega_menu_is_enabled( $location = false ) {
- if ( ! $location ) {
- return true; // the plugin is enabled
- }
- if ( ! has_nav_menu( $location ) ) {
- return false;
- }
- // if a location has been passed, check to see if MMM has been enabled for the location
- $settings = get_option( 'megamenu_settings' );
- return is_array( $settings ) && isset( $settings[ $location ]['enabled'] ) && $settings[ $location ]['enabled'] == true;
- }
- }
- if ( ! function_exists('max_mega_menu_share_themes_across_multisite') ) {
- /*
- * In the first version of MMM, themes were (incorrectly) shared between all sites in a multi site network.
- * Themes will not be shared across sites for new users installing v2.4.3 onwards, but they will be shared for existing (older) users.
- *
- * @since 2.3.7
- */
- function max_mega_menu_share_themes_across_multisite() {
- if ( defined('MEGAMENU_SHARE_THEMES_MULTISITE') && MEGAMENU_SHARE_THEMES_MULTISITE === false ) {
- return false;
- }
- if ( defined('MEGAMENU_SHARE_THEMES_MULTISITE') && MEGAMENU_SHARE_THEMES_MULTISITE === true ) {
- return true;
- }
- if ( get_option('megamenu_multisite_share_themes') === 'false' ) { // only exists if initially installed version is 2.4.3+
- return false;
- }
- return apply_filters( 'megamenu_share_themes_across_multisite', true );
-
- }
- }
- if ( ! function_exists('max_mega_menu_get_themes') ) {
- /*
- * Return saved themes
- *
- * @since 2.3.7
- */
- function max_mega_menu_get_themes() {
- if ( ! max_mega_menu_share_themes_across_multisite() ) {
- return get_option( "megamenu_themes" );
- }
- return get_site_option( "megamenu_themes" );
- }
- }
- if ( ! function_exists('max_mega_menu_save_themes') ) {
- /*
- * Save menu theme
- *
- * @since 2.3.7
- */
- function max_mega_menu_save_themes( $themes ) {
- if ( ! max_mega_menu_share_themes_across_multisite() ) {
- return update_option( "megamenu_themes", $themes );
- }
- return update_site_option( "megamenu_themes", $themes );
-
- }
- }
- if ( ! function_exists('max_mega_menu_save_last_updated_theme') ) {
- /*
- * Save last updated theme
- *
- * @since 2.3.7
- */
- function max_mega_menu_save_last_updated_theme( $theme ) {
- if ( ! max_mega_menu_share_themes_across_multisite() ) {
- return update_option( "megamenu_themes_last_updated", $theme );
- }
- return update_site_option( "megamenu_themes_last_updated", $theme );
-
- }
- }
- if ( ! function_exists('max_mega_menu_get_last_updated_theme') ) {
- /*
- * Return last updated theme
- *
- * @since 2.3.7
- */
- function max_mega_menu_get_last_updated_theme() {
- if ( ! max_mega_menu_share_themes_across_multisite() ) {
- return get_option( "megamenu_themes_last_updated" );
- }
- return get_site_option( "megamenu_themes_last_updated" );
-
- }
- }
- if ( ! function_exists('max_mega_menu_get_toggle_blocks') ) {
- /*
- * Return saved toggle blocks
- *
- * @since 2.3.7
- */
- function max_mega_menu_get_toggle_blocks() {
- if ( ! max_mega_menu_share_themes_across_multisite() ) {
- return get_option( "megamenu_toggle_blocks" );
- }
- return get_site_option( "megamenu_toggle_blocks" );
-
- }
- }
- if ( ! function_exists('max_mega_menu_save_toggle_blocks') ) {
- /*
- * Save toggle blocks
- *
- * @since 2.3.7
- */
- function max_mega_menu_save_toggle_blocks( $saved_blocks ) {
- if ( ! max_mega_menu_share_themes_across_multisite() ) {
- return update_option( "megamenu_toggle_blocks", $saved_blocks );
- }
- return update_site_option( "megamenu_toggle_blocks", $saved_blocks );
- }
- }
- if ( ! function_exists('max_mega_menu_delete_themes') ) {
- /*
- * Delete saved themes
- *
- * @since 2.3.7
- */
- function max_mega_menu_delete_themes() {
- if ( ! max_mega_menu_share_themes_across_multisite() ) {
- return delete_option( "megamenu_themes" );
- }
- return delete_site_option( "megamenu_themes" );
- }
- }
- if ( ! function_exists('max_mega_menu_get_active_caching_plugins') ) {
- /**
- * Return list of active caching/CDN/minification plugins
- *
- * @since 2.4
- * @return array
- */
- function max_mega_menu_get_active_caching_plugins() {
- $caching_plugins = apply_filters("megamenu_caching_plugins", array(
- 'litespeed-cache/litespeed-cache.php',
- 'js-css-script-optimizer/js-css-script-optimizer.php',
- 'merge-minify-refresh/merge-minify-refresh.php',
- 'minify-html-markup/minify-html.php',
- 'simple-cache/simple-cache.php',
- 'w3-total-cache/w3-total-cache.php',
- 'wp-fastest-cache/wpFastestCache.php',
- 'wp-speed-of-light/wp-speed-of-light.php',
- 'wp-super-cache/wp-cache.php',
- 'wp-super-minify/wp-super-minify.php',
- 'autoptimize/autoptimize.php',
- 'bwp-minify/bwp-minify.php',
- 'cache-enabler/cache-enabler.php',
- 'cloudflare/cloudflare.php',
- 'comet-cache/comet-cache.php',
- 'css-optimizer/bpminifycss.php',
- 'fast-velocity-minify/fvm.php',
- 'hyper-cache/plugin.php',
- 'remove-query-strings-littlebizzy/remove-query-strings.php',
- 'remove-query-strings-from-static-resources/remove-query-strings.php',
- 'query-strings-remover/query-strings-remover.php',
- 'wp-rocket/wp-rocket.php',
- 'hummingbird-performance/wp-hummingbird.php',
- 'breeze/breeze.php'
- ));
- $active_plugins = array();
- foreach ( $caching_plugins as $plugin_path ) {
- if ( is_plugin_active( $plugin_path ) ) {
- $plugin_data = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin_path );
- $active_plugins[] = $plugin_data['Name'];
- }
- }
- return $active_plugins;
- }
- }
|