| 6 views.module | views_include($file) |
| 7 views.module | views_include($file) |
Include views .inc files as necessary.
27 calls to views_include()
File
- ./
views.module, line 733 - Primarily Drupal hooks and global API functions to manipulate views.
Code
function views_include($file) {
static $used = array();
if (!isset($used[$file])) {
require_once './' . drupal_get_path('module', 'views') . "/includes/$file.inc";
}
$used[$file] = TRUE;
}
Login or register to post comments