You are here

function og_subgroups_init in Subgroups for Organic groups 5.4

Same name and namespace in other branches
  1. 5 og_subgroups.module \og_subgroups_init()

Implementation of hook_init().

File

./og_subgroups.module, line 13
Maintains subgroups hierarchy created by the orgainc groups module.

Code

function og_subgroups_init() {
  if (module_exists('views')) {
    include_once drupal_get_path('module', 'og_subgroups') . '/og_subgroups.views.inc';
  }
  if (module_exists('workflow_ng')) {
    include_once drupal_get_path('module', 'og_subgroups') . '/og_subgroups.workflow_ng.inc';
  }
}