function theme_shortcut_set_customize

Returns HTML for a shortcut set customization form.

Parameters

$variables: An associative array containing:

  • form: A render element representing the form.

See also

shortcut_set_customize()

Related topics

File

drupal/modules/shortcut/shortcut.admin.inc, line 340
Administrative page callbacks for the shortcut module.

Code

function theme_shortcut_set_customize($variables) {
  $form = $variables['form'];
  $map = array(
    'disabled' => t('Disabled'),
    'enabled' => t('Enabled'),
  );
  $shortcuts_by_status = array(
    'enabled' => element_children($form['shortcuts']['enabled']),
    'disabled' => element_children($form['shortcuts']['disabled']),
  );

  // Do not add any rows to the table if there are no shortcuts to display.
  $statuses = empty($shortcuts_by_status['enabled']) && empty($shortcuts_by_status['disabled']) ? array() : array_keys($shortcuts_by_status);
  $rows = array();
  foreach ($statuses as $status) {
    drupal_add_tabledrag('shortcuts', 'match', 'sibling', 'shortcut-status-select');
    drupal_add_tabledrag('shortcuts', 'order', 'sibling', 'shortcut-weight');
    $rows[] = array(
      'data' => array(
        array(
          'colspan' => 5,
          'data' => '<strong>' . $map[$status] . '</strong>',
        ),
      ),
      'class' => array(
        'shortcut-status',
        'shortcut-status-' . $status,
      ),
    );
    foreach ($shortcuts_by_status[$status] as $key) {
      $shortcut =& $form['shortcuts'][$status][$key];
      $row = array();
      $row[] = drupal_render($shortcut['name']);
      $row[] = drupal_render($shortcut['weight']);
      $row[] = drupal_render($shortcut['status']);
      $row[] = drupal_render($shortcut['edit']);
      $row[] = drupal_render($shortcut['delete']);
      $rows[] = array(
        'data' => $row,
        'class' => array(
          'draggable',
        ),
      );
    }
    if ($status == 'enabled') {
      for ($i = 0; $i < shortcut_max_slots(); $i++) {
        $rows['empty-' . $i] = array(
          'data' => array(
            array(
              'colspan' => 5,
              'data' => '<em>' . t('Empty') . '</em>',
            ),
          ),
          'class' => array(
            'shortcut-slot-empty',
          ),
        );
      }
      $count_shortcuts = count($shortcuts_by_status[$status]);
      if (!empty($count_shortcuts)) {
        for ($i = 0; $i < min($count_shortcuts, shortcut_max_slots()); $i++) {
          $rows['empty-' . $i]['class'][] = 'shortcut-slot-hidden';
        }
      }
    }
  }
  $header = array(
    t('Name'),
    t('Weight'),
    t('Status'),
    array(
      'data' => t('Operations'),
      'colspan' => 2,
    ),
  );
  $output = theme('table', array(
    'header' => $header,
    'rows' => $rows,
    'attributes' => array(
      'id' => 'shortcuts',
    ),
    'empty' => t('No shortcuts available. <a href="@link">Add a shortcut</a>.', array(
      '@link' => url('admin/config/user-interface/shortcut/' . $form['#shortcut_set_name'] . '/add-link'),
    )),
  ));
  $output .= drupal_render($form['actions']);
  $output = drupal_render_children($form) . $output;
  return $output;
}