Allows an admin to shift certain 'local task' tabs into proper menu structure.
This allows for more control of positioning and theming, as well as order
and label management.
Initially, this can be used to promote 'tabs 'on user account pages
(under /user/* ) into the 'user-menu'.
Additional parts of the admin interface that use MENU_LOCAL_TASK can also
be promoted, though some custom paths may need additional work to support.
Usage
-------------
When first installed, the 'user' local tabs will be shifted into the user-menu
where they can then be managed.
When this happens the menu paths (eg user/{uid}/edit) continue to work, but
they will no longer show up as 'local tabs'. Instead, you MUST now display the
'user-menu' as a block somewhere in your theme regions.
You can manage the items and theming from then on as normal.
Enabling this module WITHOUT then showing the target menu block may make
some functionality inaccessible.
Configuration
-------------
To add more local tabs to the world of full menu items, the variable
local_tasks_as_menu_rewrites
Should be set.
This can be done in settings.php $conf values, eg:
$conf['local_tasks_as_menu_rewrites']['node/%node/'] = array(
'path-replacement' => 'node/%node_nid_optional/',
'type' => MENU_NORMAL_ITEM,
);