shortcut_link_edit($form, &$form_state, $shortcut_link)
drupal/modules/shortcut/shortcut.admin.inc, line 434
Form callback: builds the form for editing a shortcut link.
@see shortcut_link_edit_validate() @see shortcut_link_edit_submit()
$form An associative array containing the structure of the form.
$form_state An associative array containing the current state of the form.
$shortcut_link An array representing the link that is being edited.
An array representing the form definition.
| Name | Description |
|---|---|
| Form builder functions | Functions that build an abstract representation of a HTML form. |
function shortcut_link_edit($form, &$form_state, $shortcut_link) {
drupal_set_title(t('Editing @shortcut', array('@shortcut' => $shortcut_link['link_title'])));
$form['original_shortcut_link'] = array(
'#type' => 'value',
'#value' => $shortcut_link,
);
$form += _shortcut_link_form_elements($shortcut_link);
return $form;
}