function subuser_menu_link_alter in Subuser 6
Implementation of hook_menu_link_alter().
Allow the logout link to be altered.
@see, subuser_translated_menu_link_alter()
File
- ./
subuser.module, line 72 - Allows users of a particular role to create sub user account in another role.
Code
function subuser_menu_link_alter(&$item, $menu) {
if ($item['link_path'] == 'logout') {
$item['options']['alter'] = TRUE;
}
}