function hook_user_insert
7.x user.api.php | hook_user_insert(&$edit, $account, $category) |
A user account was created.
The module should save its custom additions to the user object into the database.
Parameters
$edit: The array of form values submitted by the user.
$account: The user object on which the operation is being performed.
$category: The active category of user information being edited.
See also
Related topics
4 functions implement hook_user_insert()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- entity_crud_hook_test_user_insert in drupal-7.x/
modules/ simpletest/ tests/ entity_crud_hook_test.module - Implements hook_user_insert().
- openid_user_insert in drupal-7.x/
modules/ openid/ openid.module - Implements hook_user_insert().
- profile_user_insert in drupal-7.x/
modules/ profile/ profile.module - Implements hook_user_insert().
- trigger_user_insert in drupal-7.x/
modules/ trigger/ trigger.module - Implements hook_user_insert().
2 invocations of hook_user_insert()
- field_attach_insert in drupal-7.x/
modules/ field/ field.attach.inc - Save field data for a new entity.
- user_save in drupal-7.x/
modules/ user/ user.module - Save changes to a user account or add a new user.
File
- drupal-7.x/
modules/ user/ user.api.php, line 252 - Hooks provided by the User module.
Code
function hook_user_insert(&$edit, $account, $category) {
db_insert('mytable')
->fields(array(
'myfield' => $edit['myfield'],
'uid' => $account->uid,
))
->execute();
}