function shortcut_set_customize
7.x shortcut.admin.inc | shortcut_set_customize($form, &$form_state, $shortcut_set) |
Form callback: builds the form for customizing shortcut sets.
Parameters
$form: An associative array containing the structure of the form.
$form_state: An associative array containing the current state of the form.
$shortcut_set: An object representing the shortcut set which is being edited.
Return value
An array representing the form definition.
See also
shortcut_set_customize_submit()
Related topics
2 string references to 'shortcut_set_customize'
- shortcut_menu in drupal-7.x/
modules/ shortcut/ shortcut.module - Implements hook_menu().
- shortcut_theme in drupal-7.x/
modules/ shortcut/ shortcut.module - Implements hook_theme().
File
- drupal-7.x/
modules/ shortcut/ shortcut.admin.inc, line 266 - Administrative page callbacks for the shortcut module.
Code
function shortcut_set_customize($form, &$form_state, $shortcut_set) {
$form['#shortcut_set_name'] = $shortcut_set->set_name;
$form['shortcuts'] = array(
'#tree' => TRUE,
'#weight' => -20,
'enabled' => array(),
'disabled' => array(),
);
foreach ($shortcut_set->links as $link) {
$mlid = $link['mlid'];
$status = $link['hidden'] ? 'disabled' : 'enabled';
$form['shortcuts'][$status][$mlid]['name']['#markup'] = l($link['link_title'], $link['link_path']);
$form['shortcuts'][$status][$mlid]['weight'] = array(
'#type' => 'weight',
'#title' => t('Weight'),
'#delta' => 50,
'#default_value' => $link['weight'],
'#attributes' => array('class' => array('shortcut-weight')),
);
$form['shortcuts'][$status][$mlid]['status'] = array(
'#type' => 'select',
'#title' => t('Status'),
'#options' => array('disabled' => t('Disabled'), 'enabled' => t('Enabled')),
'#default_value' => $status,
'#attributes' => array('class' => array('shortcut-status-select')),
);
$form['shortcuts'][$status][$mlid]['edit']['#markup'] = l(t('edit'), 'admin/config/user-interface/shortcut/link/' . $mlid);
$form['shortcuts'][$status][$mlid]['delete']['#markup'] = l(t('delete'), 'admin/config/user-interface/shortcut/link/' . $mlid . '/delete');
}
$form['#attached'] = array(
'css' => array(drupal_get_path('module', 'shortcut') . '/shortcut.admin.css'),
'js' => array(drupal_get_path('module', 'shortcut') . '/shortcut.admin.js'),
);
$form['actions'] = array(
'#type' => 'actions',
'#access' => !empty($shortcut_set->links),
);
$form['actions']['submit'] = array(
'#type' => 'submit',
'#value' => t('Save changes'),
);
return $form;
}