You are here

function views_handler::show_expose_form in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.3 includes/handlers.inc \views_handler::show_expose_form()

Shortcut to display the exposed options form.

2 calls to views_handler::show_expose_form()
views_handler_filter::options_form in handlers/views_handler_filter.inc
Provide the basic form which calls through to subforms. If overridden, it is best to call through to the parent, or to at least make sure all of the functions in this form are called.
views_handler_sort::options_form in handlers/views_handler_sort.inc
Basic options for all sort criteria

File

includes/handlers.inc, line 569
handlers.inc Defines the various handler objects to help build and display views.

Class

views_handler
Base handler, from which all the other handlers are derived. It creates a common interface to create consistency amongst handlers and data.

Code

function show_expose_form(&$form, &$form_state) {
  if (empty($this->options['exposed'])) {
    return;
  }
  $form['expose'] = array(
    '#prefix' => '<div class="views-expose-options clear-block">',
    '#suffix' => '</div>',
  );
  $this
    ->expose_form($form, $form_state);

  // When we click the expose button, we add new gadgets to the form but they
  // have no data in $_POST so their defaults get wiped out. This prevents
  // these defaults from getting wiped out. This setting will only be TRUE
  // during a 2nd pass rerender.
  if (!empty($form_state['force_expose_options'])) {
    foreach (element_children($form['expose']) as $id) {
      if (isset($form['expose'][$id]['#default_value']) && !isset($form['expose'][$id]['#value'])) {
        $form['expose'][$id]['#value'] = $form['expose'][$id]['#default_value'];
      }
    }
  }
}