Error message

You are browsing documentation for drupal 7.x, which is not supported anymore. Read the updated version of this page for drupal 11.x (the latest version).

function user_cancel_access

Menu access callback; limit access to account cancellation pages.

Limit access to users with the 'cancel account' permission or administrative users, and prevent the anonymous user from cancelling the account.

1 string reference to 'user_cancel_access'
user_menu in modules/user/user.module
Implements hook_menu().

File

modules/user/user.module, line 1642

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.