Form callback: builds the form for switching shortcut sets.
$form: An associative array containing the structure of the form.
$form_state: An associative array containing the current state of the form.
$account: (optional) The user account whose shortcuts will be switched. Defaults to the current logged-in user.
An array representing the form definition.
shortcut_set_switch_validate()
function shortcut_set_switch($form, &$form_state, $account = NULL) {
global $user;
if (!isset($account)) {
$account = $user;
}
// Prepare the list of shortcut sets.
$sets = shortcut_sets();
$current_set = shortcut_current_displayed_set($account);
$options = array();
foreach ($sets as $name => $set) {
$options[$name] = check_plain($set->title);
}
// Only administrators can add shortcut sets.
$add_access = user_access('administer shortcuts');
if ($add_access) {
$options['new'] = t('New set');
}
if (count($options) > 1) {
$form['account'] = array(
'#type' => 'value',
'#value' => $account,
);
$form['set'] = array(
'#type' => 'radios',
'#title' => $user->uid == $account->uid ? t('Choose a set of shortcuts to use') : t('Choose a set of shortcuts for this user'),
'#options' => $options,
'#default_value' => $current_set->set_name,
);
$form['new'] = array(
'#type' => 'textfield',
'#title' => t('Name'),
'#title_display' => 'invisible',
'#description' => t('The new set is created by copying items from your default shortcut set.'),
'#access' => $add_access,
);
if ($user->uid != $account->uid) {
$default_set = shortcut_default_set($account);
$form['new']['#description'] = t('The new set is created by copying items from the %default set.', array(
'%default' => $default_set->title,
));
}
$form['#attached'] = array(
'library' => array(
array(
'shortcut',
'drupal.shortcut.admin',
),
),
);
$form['actions'] = array(
'#type' => 'actions',
);
$form['actions']['submit'] = array(
'#type' => 'submit',
'#value' => t('Change set'),
);
}
else {
// There is only 1 option, so output a message in the $form array.
$form['info'] = array(
'#markup' => '<p>' . t('You are currently using the %set-name shortcut set.', array(
'%set-name' => $current_set->title,
)) . '</p>',
);
}
return $form;
}