function theme_exposed_filters

Returns HTML for an exposed filter form.

Parameters

$variables: An associative array containing:

  • form: An associative array containing the structure of the form.

Return value

A string containing an HTML-formatted form.

Related topics

File

drupal/core/modules/system/system.module, line 3789
Configuration system that lets administrators modify the workings of the site.

Code

function theme_exposed_filters($variables) {
  $form = $variables['form'];
  $output = '';
  if (isset($form['current'])) {
    $items = array();
    foreach (element_children($form['current']) as $key) {
      $items[] = $form['current'][$key];
    }
    $output .= theme('item_list', array(
      'items' => $items,
      'attributes' => array(
        'class' => array(
          'clearfix',
          'current-filters',
        ),
      ),
    ));
  }
  $output .= drupal_render_children($form);
  return '<div class="exposed-filters">' . $output . '</div>';
}