You are here

function media_youtube_test_menu in Media: YouTube 7.3

Implements hook_menu().

File

tests/media_youtube_test.module, line 11
Alters Media: YouTube video handling to make it suitable for local testing.

Code

function media_youtube_test_menu() {
  $items['media-youtube-test/oembed'] = array(
    'title' => 'Drupal Goto',
    'page callback' => 'media_youtube_test_oembed',
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}