1 system.theme.inc theme_exposed_filters($variables)

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

core/modules/system/system.theme.inc, line 60
Theme functions for the System module.

Code

function theme_exposed_filters($variables) {
  $form = $variables['form'];
  $output = '';

  if (isset($form['current'])) {
    $items = array();
    foreach (element_children($form['current']) as $key) {
      $items[] = backdrop_render($form['current'][$key]);
    }
    $output .= theme('item_list', array('items' => $items, 'attributes' => array('class' => array('clearfix', 'current-filters'))));
  }

  $output .= backdrop_render_children($form);

  return '<div class="exposed-filters">' . $output . '</div>';
}