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
Archivo
- drupal-7.x/
modules/ system/ system.module, line 3991 - Configuration system that lets administrators modify the workings of the site.
Código
function theme_exposed_filters($variables) {
$form = $variables['form'];
$output = '';
if (isset($form['current'])) {
$items = array();
foreach (element_children($form['current']) as $key) {
$items[] = drupal_render($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>';
}