function views_include_handlers

3.x views.module views_include_handlers($reset = FALSE)
2.x views.module views_include_handlers()

Load views files on behalf of modules.

2 calls to views_include_handlers()
_views_fetch_data_build in includes/cache.inc
Build and set the views data cache if empty.
_views_fetch_plugin_data in includes/cache.inc
Fetch the plugin data from cache.

File

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

Code

function views_include_handlers($reset = FALSE) {
  static $finished = FALSE;
  // Ensure this only gets run once.
  if ($finished && !$reset) {
    return;
  }

  views_include('base');
  views_include('handlers');
  views_include('cache');
  views_include('plugins');
  views_module_include('views', $reset);
  $finished = TRUE;
}