DrupalBin
Submit Code
About
Recent Posts
Fix for Views cumulus: tag_cloud
Fix for Code
sjfgjgjfgidfgh
Code
Code
test.berniecram.com.alias.drushrc.php
Code
provision-deploy error
Create node programmatically with file
Code
more
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Log in using OpenID
Cancel OpenID login
Create new account
Request new password
Tags
CCK
drupal
fapi
jquery
menu
module
php
simpletest
taxonomy
test
theme
views
more tags
Home
user creation
Manual create user with notify
August 1, 2011 - 10:27am — Anonymous
$password
=
user_password
(
8
)
;
$newUser
=
array
(
'name'
=
>
'user'
.
time
(
)
,
'pass'
=
>
$password
,
'password'
=
>
$password
,
'mail'
=
>
$form_state
[
"values"
]
[
"field_email"
]
[
0
]
[
"value"
]
,
'sta
notifications
user creation
Read more
Fix for Multipage User Registration
February 18, 2010 - 10:04pm —
abigoltree
<?php
/**
* Implementation of hook_menu()
*/
function
multipage_register_menu
(
)
{
$items
[
'add/user'
]
=
array
(
'title'
=
>
'Add a user'
,
'page callback'
=
>
'multipage_register_wizard'
,
'ac
drupal
form
user creation
Read more
Multipage User Registration
February 18, 2010 - 5:55pm —
abigoltree
<?php
/**
* The purpose of this module is to take the user-registration form and make it
* multipage, where the pages change depending on the options selected during
* the last step.
drupal
form
user creation
Read more