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

29 calls to views_fetch_data()
view::fix_missing_relationships in includes/view.inc
Attempt to discover if the view has handlers missing relationships.
view::init_query in includes/view.inc
Do some common building initialization.
viewsFieldApiDataTest::testViewsData in tests/field/views_fieldapi.test
Unit testing the views data structure.
ViewsModuleTest::assertInstanceHandler in tests/views_module.test
Ensure that a certain handler is a instance of a certain table/field.
ViewsModuleTest::testFetchData in tests/views_module.test
Tests views_fetch_data().

... See full list

File

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

Code

function views_fetch_data($table = NULL, $move = TRUE, $reset = FALSE) {
  views_include('cache');
  return _views_fetch_data($table, $move, $reset);
}