Quantcast
Channel: drupal 7
Viewing all articles
Browse latest Browse all 19

Print or render Drupal user account profile form anywhere

$
0
0

Code below allows you to render the Drupal user edit form anywhere. Replace UID with the user account ID to edit.

$account = user_load(UID);
module_load_include('inc', 'user', 'user.pages');
$form_state = array();
$form_state['build_info']['args'] = array($account);
form_load_include($form_state, 'inc', 'user', 'user.pages');
print render(drupal_build_form('user_profile_form', $form_state));

Viewing all articles
Browse latest Browse all 19

Trending Articles