function 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 drupal/core/modules/views/views.module
Form builder for the exposed widgets form.
1 string reference to 'views_exposed_form_cache'
FilterStringTest::getBasicPageView in drupal/core/modules/views/lib/Drupal/views/Tests/Handler/FilterStringTest.php
Build and return a Page view of the views_test_data table.

File

drupal/core/modules/views/views.module, line 1929
Primarily Drupal hooks and global API functions to manipulate views.

Code

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

  // When running tests for exposed filters, this cache should
  // be cleared between each test.
  $views_exposed =& drupal_static(__FUNCTION__);

  // 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];
}