function shortcut_set_add_form
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 modules/
shortcut/ shortcut.module - Implements hook_menu().
File
-
modules/
shortcut/ shortcut.admin.inc, line 208
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.