You are here

og_views.views_default.inc in Organic groups 6

Same filename and directory in other branches
  1. 6.2 modules/og_views/og_views.views_default.inc

File

modules/og_views/og_views.views_default.inc
View source
<?php

// Declare all the .view files in the views subdir that end in .view
function og_views_default_views() {
  $files = file_scan_directory(drupal_get_path('module', 'og_views') . '/views', '.view');
  foreach ($files as $absolute => $file) {
    require $absolute;
    if (isset($view)) {
      $views[substr($file->name, 3)] = $view;
    }
  }
  return $views;
}

Functions