function theme_filter_admin_overview

Returns HTML for the text format administration overview form.

Parameters

$variables: An associative array containing:

  • form: A render element representing the form.

Related topics

File

drupal/core/modules/filter/filter.admin.inc, line 86
Admin page callbacks for the Filter module.

Code

function theme_filter_admin_overview($variables) {
  $form = $variables['form'];
  $rows = array();
  foreach (element_children($form['formats']) as $id) {
    $form['formats'][$id]['weight']['#attributes']['class'] = array(
      'text-format-order-weight',
    );
    $row = array(
      'data' => array(
        drupal_render($form['formats'][$id]['name']),
        drupal_render($form['formats'][$id]['roles']),
        drupal_render($form['formats'][$id]['weight']),
        drupal_render($form['formats'][$id]['operations']),
      ),
      'class' => array(
        'draggable',
      ),
    );
    $rows[] = $row;
  }
  $header = array(
    t('Name'),
    t('Roles'),
    t('Weight'),
    t('Operations'),
  );
  $output = theme('table', array(
    'header' => $header,
    'rows' => $rows,
    'attributes' => array(
      'id' => 'text-format-order',
    ),
  ));
  $output .= drupal_render_children($form);
  drupal_add_tabledrag('text-format-order', 'order', 'sibling', 'text-format-order-weight');
  return $output;
}