Використовуючи user_save
функцію Drupal, ви можете створювати нових користувачів на зразок:
$new_user = array(
'name' => 'JohnDoe',
'mail' => 'john.doe@email.com',
'pass' => 'password123',
'status' => 1,
'field_custom_first_name' => array(LANGUAGE_NONE => array(array('value' => 'John'))), // This becomes $account->field_custom_first_name[LANGUAGE_NONE][0]['value']
'field_custom_last_name' => array(LANGUAGE_NONE => array(array('value' => 'Doe'))),
'access' => REQUEST_TIME,
'roles' => array(), // No other roles than Authenticated
//'roles' => array('10' => '10', '11' => '11'), // If you want to specify additional roles, the numbers are role_id's
);
user_save(NULL, $new_user);
access
це робить, я скопіював це з коментарів сторінки user_save щодо do та змінив їх, тому я не на 100% у тому, щоaccess
робить. Я припускаю, що це дата останнього доступу, тому якщо це новий користувач, я думаю, його не слід встановлювати.