function user_menu_link_load

Implements hook_menu_link_load().

File

drupal/core/modules/user/user.module, line 1063
Enables the user registration and login system.

Code

function user_menu_link_load($menu_links) {

  // Hide the "User account" link for anonymous users.
  foreach ($menu_links as $link) {
    if ($link['link_path'] == 'user' && $link['module'] == 'system' && !$GLOBALS['user']->uid) {
      $link['hidden'] = 1;
    }
  }
}