1 views.module views_include_handlers($reset = FALSE)

Load views files on behalf of modules.

File

core/modules/views/views.module, line 1040
Primarily Backdrop 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('utility');
  views_include('cache');
  views_module_include('views', $reset);
  $finished = TRUE;
}