web-dev-qa-db-ja.com

プログラムでカスタムフィールドを使用して新しいユーザーを作成するにはどうすればよいですか?

いくつかのカスタムフィールドを持つユーザーを作成したいと思います。 config> people> site information> manageフィールドとフィールド(姓、名、市など)で追加のフィールドを作成しました。このカスタムフィールドを使用してユーザーを作成します。

プログラムでユーザーを作成するにはどうすればよいですか?

17
Pranav Gandhi

user_save Drupal関数を使用すると、次のように新しいユーザーを作成できます。

$new_user = array(
  'name' => 'JohnDoe',
  'mail' => '[email protected]',
  '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);
25
Beebee