function views_fetch_plugin_data

3.x views.module views_fetch_plugin_data($type = NULL, $plugin = NULL, $reset = FALSE)
2.x views.module views_fetch_plugin_data($type = NULL, $plugin = NULL)

Fetch the plugin data from cache.

17 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 1253
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);
}