You are here

function og_test_menu in Organic groups 7.2

Implements hook_menu().

File

tests/og_test.module, line 11
Test module for OG.

Code

function og_test_menu() {
  return array(
    'og_test/my_content' => array(
      'page callback' => 'og_test_my_content',
      'access arguments' => array(
        'access content',
      ),
      'type' => MENU_CALLBACK,
    ),
  );
}