function views_fetch_plugin_data
3.x views.module | views_fetch_plugin_data($type = NULL, $plugin = NULL, |
2.x views.module | views_fetch_plugin_data($type = NULL, $plugin = NULL) |
Fetch the plugin data from cache.
14 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.
File
- ./
views.module, line 717 - Primarily Drupal hooks and global API functions to manipulate views.
Code
function views_fetch_plugin_data($type = NULL, $plugin = NULL) {
views_include('cache');
return _views_fetch_plugin_data($type, $plugin);
}