function advuser_user in Advanced User 5
Same name and namespace in other branches
- 5.2 advuser.module \advuser_user()
- 6.3 advuser.module \advuser_user()
- 6.2 advuser.module \advuser_user()
hook_user implementation
File
- ./
advuser.module, line 887
Code
function advuser_user($type, &$edit, &$user, $category = NULL) {
switch ($type) {
case 'insert':
return advuser_user_insert($edit, $user, $category);
case 'update':
return advuser_user_update($edit, $user, $category);
}
//print $type;
}