You are here

function views_exposed_form_cache in Views (for Drupal 7) 8.3

Same name and namespace in other branches
  1. 6.3 views.module \views_exposed_form_cache()
  2. 6.2 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.
1 string reference to 'views_exposed_form_cache'
ViewTestBase::getBasicPageView in lib/Drupal/views/Tests/ViewTestBase.php
Build and return a Page view of the views_test_data table.

File

./views.module, line 2024
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];
}