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
करता है, मैंने उपयोगकर्ता के पेज पेज की टिप्पणियों पर इसे कॉपी किया है और उन्हें संशोधित किया है, इसलिए मैं 100% क्याaccess
नहीं करता हूं । मैं मान रहा हूं कि यह अंतिम अभिगमन तिथि है, इसलिए यदि यह एक नया उपयोगकर्ता है, तो मुझे लगता है कि इसे सेट नहीं किया जाना चाहिए।