Problem/Motivation

Menu UI is missing with micon_menu enabled. It's entirely missing.

I think it happens around here:

/**
 * Implements hook_module_implements_alter().
 */
function micon_menu_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'form_node_form_alter') {
    unset($implementations['menu_ui']);
    // Move micon_menu_form_node_form_alter() to the end of the list.
    $group = $implementations['micon_menu'];
    unset($implementations['micon_menu']);
    $implementations['micon_menu'] = $group;
  }
}

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

Issue fork micon-3494789

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

anybody created an issue. See original summary.

anybody’s picture

Assigned: Unassigned » grevil
Status: Active » Needs review
grevil’s picture

Assigned: grevil » Unassigned
Status: Needs review » Reviewed & tested by the community

LGTM!

  • grevil committed 55b99773 on 2.x authored by anybody
    Issue #3494789 by anybody: Menu UI is missing with micon_menu enabled
    
grevil’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.