function views_fetch_data

3.x views.module views_fetch_data($table = NULL, $move = TRUE, $reset = FALSE)
2.x views.module views_fetch_data($table = NULL)

Fetch Views' data from the cache

10 calls to views_fetch_data()
template_preprocess_views_ui_edit_view in includes/admin.inc
Preprocess the view edit page.
view::init_query in includes/view.inc
Do some common building initialization.
views_fetch_base_tables in includes/admin.inc
Fetch a list of all base tables available
views_fetch_fields in includes/admin.inc
Fetch a list of all fields available for a given base type.
views_get_handler in ./views.module
Fetch a handler from the data cache.

... See full list

File

./views.module, line 706
Primarily Drupal hooks and global API functions to manipulate views.

Code

function views_fetch_data($table = NULL) {
  views_include('cache');
  return _views_fetch_data($table);
}