| Versionen | |
|---|---|
| drupal6 – drupal7 | user_edit($account, $category = 'account') |
Form builder; Present the form to edit a given user or profile category.
modules/
<?php
function user_edit($account, $category = 'account') {
drupal_set_title($account->name);
return drupal_get_form('user_profile_form', $account, $category);
}
?>
Kommentare
Kommentar hinzufügen