You are here

function views_fetch_plugin_data in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 views.module \views_fetch_plugin_data()
  2. 6.2 views.module \views_fetch_plugin_data()

Fetch the plugin data from cache.

18 calls to views_fetch_plugin_data()
ViewsAccessTest::setUp in tests/views_access.test
Sets up a Drupal site for running functional and integration tests.
ViewsPluginStyleMappingTest::setUp in tests/styles/views_plugin_style_mapping.test
Sets up a Drupal site for running functional and integration tests.
ViewsTranslatableTest::setUp in tests/views_translatable.test
Sets up a Drupal site for running functional and integration tests.
views_add_contextual_links in ./views.module
Adds contextual links associated with a view display to a renderable array.
views_db_object::add_display in includes/view.inc
Add a new display handler to the view, automatically creating an id.

... See full list

File

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

Code

function views_fetch_plugin_data($type = NULL, $plugin = NULL, $reset = FALSE) {
  views_include('cache');
  return _views_fetch_plugin_data($type, $plugin, $reset);
}