hook_user_insert

Versions
mediamosa-21
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.

See also

hook_user_presave()

@see hook_user_update()

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.

Related topics

Code

modules/user/user.api.php, line 236

<?php
function hook_user_insert(&$edit, $account, $category) {
  db_insert('mytable')
    ->fields(array(
      'myfield' => $edit['myfield'],
      'uid' => $account->uid,
    ))
    ->execute();
}
?>