total_control.views_default.inc in Total Control Admin Dashboard 7.2
Same filename and directory in other branches
total_control.views_default.inc
Default views for the Total Control Admin Dashboard.
File
includes/total_control.views_default.incView source
<?php
/**
* @file total_control.views_default.inc
*
* Default views for the Total Control Admin Dashboard.
*/
/**
* Implements hook_views_default_views().
*/
function total_control_views_default_views() {
$views_path = drupal_get_path('module', 'total_control') . '/views';
$files = file_scan_directory($views_path, '/\\.view$/');
foreach ($files as $filepath => $file) {
require $filepath;
// Don't load the view if the module providing data is not enabled.
if ($file->name == 'control_activity' && !module_exists('statistics') || $file->name == 'control_comments' && !module_exists('comment') || $file->name == 'control_terms' && !module_exists('taxonomy')) {
continue;
}
else {
if (isset($view)) {
$views[$view->name] = $view;
}
}
}
return $views;
}
Functions
Name | Description |
---|---|
total_control_views_default_views | Implements hook_views_default_views(). |