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 drupal-7.x/
modules/ user/ user.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ user/ user.module, line 1597 - Enables the user registration and login system.
Código
function user_cancel_access($account) {
return ((($GLOBALS['user']->uid == $account->uid) && user_access('cancel account')) || user_access('administer users')) && $account->uid > 0;
}