プログラムでユーザーを作成し、ロールを付与します


46

私はこのようにプログラムでユーザーを作成しています:

$newUser = array(
  'name' => $mail, 
  'pass' => 'password',  // note: do not md5 the password
  'mail' => $mail, 
  'status' => 1, 
  'init' => $mail,
  'roles' => array(5)
);
$user = user_save(null, $newUser);

役割IDが5の役割があります。ユーザーを作成すると、テーブル「users_roles」にはロールIDの値が0の行しかありませんが、ユーザーオブジェクトをvar_dump()で印刷すると、ロールが作成されたように見えます。

何が間違っていますか?


値の真実性のみをチェックし、重要なのはキーです。array($role_id => 'anything')
RaisinBranCrunch

回答:


46

このコードは私のために働いた:

$new_user = array(
  'name' => $name,
  'pass' => $sifra, // note: do not md5 the password
  'mail' => $email,
  'status' => 1,
  'init' => $email,
  'roles' => array(
    DRUPAL_AUTHENTICATED_RID => 'authenticated user',
    3 => 'custom role',
  ),
);

// The first parameter is sent blank so a new user is created.
user_save('', $new_user);

「abc12345」などのパスワードをパスワードに書き込む必要があり、user_save()はmd5に変換されますか?
xstean

1
user_saveそれの世話をする
Gulok

パスワードがuser_save()の2番目の引数にある限り、ハッシュされます。その場合はuser_save($account)なし$edit引数は、MD5変換は発生しません。以下の@SMTFによる回答はこれを示しています。
アレック

おかげで私の日は救われました
リシャブ

13

これは私がサイトで見つけた例です。

$account = new stdClass;
$account->is_new = TRUE;
$account->name = 'foo';
$account->pass = user_hash_password('bar');
$account->mail = 'foo@example.com';
$account->init = 'foo@example.com';
$account->status = TRUE;
$account->roles = array(DRUPAL_AUTHENTICATED_RID => TRUE);
$account->timezone = variable_get('date_default_timezone', '');
user_save($account);

申し訳ありませんが、DRUPAL_AUTHENTICATED_RID => TRUEは間違っているように思われ、user_hash_passwordが必要だとは思いません。
stefgosselin

user_hash_password('bar');が間違っている
ジョエルジェームズ

user_save()パスワードを保存する前にハッシュ化に失敗する場合があります(私自身の経験では、Webの他のユーザーも時々それを経験しています)。理由はわかりません(しかし、私はしたいです!)。これらの場合、電話user_hash_password()が必要だと思われます。
アレック

この答えのコードはない必要がuser_hash_password()手動で呼ばれるように。これはに渡さ$editれないためuser_save()です。コードが含まれている場合は$edit = array('pass' => 'bar');やってするのではなく、その後、(この答えはない)$account->pass = user_hash...を行うことができますuser_save($account, $edit);し、user_save()あなたのためのハッシュを行います。
アレック

13

プログラムでロールとカスタムフィールド値(名や姓など)を持つユーザーを作成するには、次のコードを使用できます。

$new_user = array(
  'name' => 'xgramp',
  'pass' => 'idontwantnoonebutyoutoloveme',
  'mail' => 'xgparsons@flyingburritobrothers.la',
  'signature_format' => 'full_html',
  'status' => 1,
  'language' => 'en',
  'timezone' => 'America/Los_Angeles',
  'init' => 'Email',
  'roles' => array(
    DRUPAL_AUTHENTICATED_RID => 'authenticated user',
    6 => 'member', // role id for custom roles varies per website
  ),
  'field_first_name' => array(
    'und' => array(
      0 => array(
        'value' => 'Gram',
      ),
    ),
  ),
  'field_last_name' => array(
    'und' => array(
      0 => array(
        'value' => 'Parsons',
      ),
    ),
  ),
);

$account = user_save(NULL, $new_user);

詳細については、このブログ投稿とコメントを参照してください:http : //codekarate.com/blog/create-user-account-drupal-7-programmatically


あなたはロール配列の括弧を逃した
SeanJA 14

2

電子メールアドレスからプログラムでユーザーを作成するには、次を試してください。

// Use the e-mail address prefix as a user name.
$name = substr($mail, 0, strpos($mail, '@'));

// Make sure the user name isn't already taken.
$query = db_select('users', 'u')
  ->fields('u', array('uid'))
  ->condition('u.name', $name)
  ->execute();
$result = $query->fetch();

// If the user name is taken, append a random string to the end of it.
if ($result->uid) { $name .= '-' . user_password(); }

// Build the user account object and then save it.
$account = new stdClass();
$account->name = $name;
$account->mail = $mail;
$account->init = $mail;
$account->pass = user_password();
$account->status = 1;
user_save($account);
if ($account->uid) {
  drupal_set_message('Created new user with id %uid', array('%uid' => $account->uid));
}

0

プログラムでユーザーを作成するには:

$newUser = array(
      'name' => 'theUserName,
      'pass' => 'thePassWord',
      'mail' => 'the@mail.com',
      'status' => 1,
      'roles' => array(DRUPAL_AUTHENTICATED_RID => 'authenticated user'),
      'init' =>  'the@mail.com',
  );
user_save(null, $newUser);
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.