theme_filter_admin_overview
- Versions
- 4.7 – 6
theme_filter_admin_overview($form)- 7
theme_filter_admin_overview($variables)
Theme the text format administration overview form.
Related topics
Code
modules/filter/filter.admin.inc, line 61
<?php
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');
$rows[] = 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]['configure']),
drupal_render($form['formats'][$id]['delete']),
),
'class' => array('draggable'),
);
}
$header = array(t('Name'), t('Roles'), t('Weight'), array('data' => t('Operations'), 'colspan' => 2));
$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;
}
?>Login or register to post comments 