You are here

function views_fetch_plugin_data in Views (for Drupal 7) 6.3

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

Fetch the plugin data from cache.

15 calls to views_fetch_plugin_data()
template_preprocess_views_ui_edit_item in includes/admin.inc
Add information about a section to a display.
template_preprocess_views_ui_edit_view in includes/admin.inc
Preprocess the view edit page.
views_db_object::add_display in includes/view.inc
Add a new display handler to the view, automatically creating an id.
views_fetch_plugin_names in includes/admin.inc
Fetch a list of all base tables available
views_get_applicable_views in ./views.module
Return a list of all views and display IDs that have a particular setting in their display's plugin settings.

... See full list

File

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