views_include_handlers

Versions
6 – 7
views_include_handlers()

Load views files on behalf of modules.

▾ 8 functions call views_include_handlers()

views1_import in contributions/views/includes/convert.inc
Convert a Views 1 view to a Views 2 view.
views_handler_dependencies in contributions/features/includes/features.views.inc
Provides an array that maps hook_views_data() tables to modules.
views_include_default_views in contributions/views/views.module
Load default views files on behalf of modules.
views_include_default_views in contributions/views/views.module
Load default views files on behalf of modules.
views_plugin_dependencies in contributions/features/includes/features.views.inc
Provides an array that maps hook_views_plugins() to modules.
_views_fetch_data in contributions/views/includes/cache.inc
Fetch Views' data from the cache
_views_fetch_plugin_data in contributions/views/includes/cache.inc
Fetch the plugin data from cache.
_views_fetch_plugin_data in contributions/views/includes/cache.inc
Fetch the plugin data from cache.

Code

contributions/views/views.module, line 609

<?php
function views_include_handlers() {
  static $finished = FALSE;
  // Ensure this only gets run once.
  if ($finished) {
    return;
  }

  views_include('base');
  views_include('handlers');
  views_include('cache');
  views_include('plugins');
  _views_include_handlers();
  $finished = TRUE;
}
?>

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • Web page addresses and e-mail addresses turn into links automatically.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters (without spaces) shown in the image.