function usertabs_user_edit in User Tabs 6
Form builder; Present the form to edit a given user or profile category.
See also
1 string reference to 'usertabs_user_edit'
- usertabs_menu_alter in ./
usertabs.module - Implementation of hook_menu_alter().
File
- ./
usertabs.module, line 68 - usertabs.module
Code
function usertabs_user_edit($account, $category = 'account') {
drupal_set_title(check_plain($account->name));
include_once drupal_get_path('module', 'user') . '/user.pages.inc';
return drupal_get_form('user_profile_form', $account, $category);
}