function uc_store_initials in Ubercart 5
Same name and namespace in other branches
- 6.2 uc_store/uc_store.admin.inc \uc_store_initials()
Form to enter initials for an administrative user.
1 string reference to 'uc_store_initials'
- uc_store_menu in uc_store/
uc_store.module - Implementation of hook_menu().
File
- uc_store/
uc_store.module, line 1673 - Contains global Ubercart functions and store administration functionality.
Code
function uc_store_initials() {
$form['username'] = array(
'#type' => 'textfield',
'#title' => t('User name'),
'#description' => t('Enter the name of the user whose initials you want to adjust.'),
'#required' => TRUE,
'#size' => 32,
'#autocomplete_path' => 'user/autocomplete',
);
$form['initials'] = array(
'#type' => 'textfield',
'#title' => t('Initials'),
'#description' => t('Enter initials or leave blank to erase current initials.'),
'#size' => 6,
'#maxlength' => 32,
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Submit'),
);
return $form;
}