You are here

function total_control_views_default_views in Total Control Admin Dashboard 7.2

Same name and namespace in other branches
  1. 6.2 includes/total_control.views_default.inc \total_control_views_default_views()
  2. 6 includes/total_control.views_default.inc \total_control_views_default_views()

Implements hook_views_default_views().

File

includes/total_control.views_default.inc, line 12
total_control.views_default.inc

Code

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;
}