function user_edit_access

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/user/user.module \user_edit_access()

Access callback for user account editing.

1 call to user_edit_access()
profile_category_access in drupal-6.x/modules/profile/profile.module
Menu item access callback - check if a user has access to a profile category.
2 string references to 'user_edit_access'
openid_menu in drupal-6.x/modules/openid/openid.module
Implementation of hook_menu.
user_menu in drupal-6.x/modules/user/user.module
Implementation of hook_menu().

Archivo

drupal-6.x/modules/user/user.module, line 906
Enables the user registration and login system.

Código

function user_edit_access($account) {
  return (($GLOBALS['user']->uid == $account->uid) || user_access('administer users')) && $account->uid > 0;
}