function user_delete_perm in User Delete 6.2
Same name and namespace in other branches
- 5 user_delete.module \user_delete_perm()
- 6 user_delete.module \user_delete_perm()
Implementation of hook_perm().
File
- ./
user_delete.module, line 27 - Provide account cancellation methods and API to provide the same functionalty as Drupal 7 for cancelling accounts.
Code
function user_delete_perm() {
return array(
'cancel account',
'select account cancellation method',
);
}