Same name and namespace in other branches
  1. 6.x-3.x views.module \views_fetch_data()

Fetch Views' data from the cache.

28 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::testViewsFetchData in tests/views_module.test
Tests views_fetch_data().

... See full list

File

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