function shortcut_set_add_form
7.x shortcut.admin.inc | shortcut_set_add_form($form, &$form_state) |
Form callback: builds the form for adding a shortcut set.
Parameters
$form: An associative array containing the structure of the form.
$form_state: An associative array containing the current state of the form.
Return value
An array representing the form definition.
See also
shortcut_set_add_form_validate()
shortcut_set_add_form_submit()
Related topics
1 string reference to 'shortcut_set_add_form'
- shortcut_menu in drupal-7.x/
modules/ shortcut/ shortcut.module - Implements hook_menu().
File
- drupal-7.x/
modules/ shortcut/ shortcut.admin.inc, line 208 - Administrative page callbacks for the shortcut module.
Code
function shortcut_set_add_form($form, &$form_state) {
$form['new'] = array(
'#type' => 'textfield',
'#title' => t('Set name'),
'#description' => t('The new set is created by copying items from your default shortcut set.'),
'#required' => TRUE,
);
$form['actions'] = array('#type' => 'actions');
$form['actions']['submit'] = array(
'#type' => 'submit',
'#value' => t('Create new set'),
);
return $form;
}