| 7 user.module | user_cancel_access($account) |
| 8 user.module | user_cancel_access($account) |
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'
File
- modules/
user/ user.module, line 1560 - Enables the user registration and login system.
Code
function user_cancel_access($account) {
return ((($GLOBALS['user']->uid == $account->uid) && user_access('cancel account')) || user_access('administer users')) && $account->uid > 0;
}
Login or register to post comments