You are here

function ng_lightbox_test_menu in NG Lightbox 7

Implements hook_menu().

File

tests/modules/ng_lightbox_test/ng_lightbox_test.module, line 11
Test module.

Code

function ng_lightbox_test_menu() {
  return array(
    'ng-lightbox-test' => array(
      'page callback' => 'ng_lightbox_test_page',
      'title' => 'Test page',
      'access callback' => TRUE,
    ),
  );
}