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
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
Comment #3
anybodyComment #4
grevil commentedLGTM!
Comment #6
grevil commented