function views_fetch_plugin_data
Same name in other branches
- 6.x-3.x 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.
File
-
./
views.module, line 1429
Code
function views_fetch_plugin_data($type = NULL, $plugin = NULL, $reset = FALSE) {
views_include('cache');
return _views_fetch_plugin_data($type, $plugin, $reset);
}