function roleassign_user_presave in RoleAssign 7
Same name and namespace in other branches
- 8 roleassign.module \roleassign_user_presave()
- 7.2 roleassign.module \roleassign_user_presave()
Implements hook_user_presave().
Parameters
array $edit:
object $account:
string $category:
File
- ./
roleassign.module, line 97 - Allows site administrators to further delegate the task of managing user's roles.
Code
function roleassign_user_presave(array &$edit, $account, $category) {
_roleassign_module_load_include('admin.inc');
return _roleassign_user_presave($edit, $account, $category);
}