function user_edit
Form builder; Present the form to edit a given user or profile category.
See also
Related topics
1 string reference to 'user_edit'
- user_menu in drupal-6.x/
modules/ user/ user.module - Implementation of hook_menu().
Archivo
- drupal-6.x/
modules/ user/ user.pages.inc, line 236 - User page callback file for the user module.
Código
function user_edit($account, $category = 'account') {
drupal_set_title(check_plain($account->name));
return drupal_get_form('user_profile_form', $account, $category);
}