function context_omega_test_page in Context omega 7
Page callback of the test page.
1 string reference to 'context_omega_test_page'
- context_omega_test_menu in tests/
context_omega_test/ context_omega_test.module - Implements hook_menu().
File
- tests/
context_omega_test/ context_omega_test.module, line 24 - The main module file for the context_omega_test module.
Code
function context_omega_test_page() {
// Just return an empty page.
return array(
'#markup' => 'demo page',
);
}