You are here

function views_exposed_form_cache in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 8.3 views.module \views_exposed_form_cache()
  2. 6.3 views.module \views_exposed_form_cache()
  3. 7.3 views.module \views_exposed_form_cache()

Save the Views exposed form for later use.

Parameters

$views_name: String. The views name.

$display_name: String. The current view display name.

$form_output: Array (optional). The form structure. Only needed when inserting the value.

Return value

Array. The form structure, if any. Otherwise, return FALSE.

1 call to views_exposed_form_cache()
views_exposed_form in ./views.module
Form builder for the exposed widgets form.

File

./views.module, line 1106
Primarily Drupal hooks and global API functions to manipulate views.

Code

function views_exposed_form_cache($views_name, $display_name, $form_output = NULL) {
  static $views_exposed;

  // Save the form output
  if (!empty($form_output)) {
    $views_exposed[$views_name][$display_name] = $form_output;
    return;
  }

  // Return the form output, if any
  return empty($views_exposed[$views_name][$display_name]) ? FALSE : $views_exposed[$views_name][$display_name];
}