function views_fetch_plugin_data

Same name in other branches
  1. 7.x-3.x 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

Code

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