You are here

function context_omega_test_menu in Context omega 7

Implements hook_menu().

File

tests/context_omega_test/context_omega_test.module, line 11
The main module file for the context_omega_test module.

Code

function context_omega_test_menu() {
  $items['custom-omega-test'] = array(
    'title' => 'Custom omega test',
    'description' => 'Defines the omega test page.',
    'page callback' => 'context_omega_test_page',
    'access callback' => TRUE,
  );
  return $items;
}