You are here

og_vocab_test.module in OG Vocabulary 7

Test module for OG vocabulary.

File

tests/og_vocab_test.module
View source
<?php

/**
 * @file
 * Test module for OG vocabulary.
 */

/**
 * Implements hook_init().
 */
function og_vocab_test_init() {
  if ($nid = variable_get('og_vocab_test_context_nid', FALSE)) {
    $node = node_load($nid);
    og_context('node', $node);
  }
}

Functions

Namesort descending Description
og_vocab_test_init Implements hook_init().