You are here

function og_webform_init in Organic Groups Webform Integration 6

Implementation of hook_init().

File

./og_webform.module, line 11
Enables organic group administrators to modify webforms within their groups.

Code

function og_webform_init() {

  // Set the group context for Webform and Results tabs.
  if (!og_get_group_context()) {
    $node = menu_get_object('webform_menu');
    if (isset($node->nid) && ($group_node = og_determine_context_get_group($node))) {
      og_set_group_context($group_node);
    }
  }
}