You are here

function video_menu in Video 6.3

Same name and namespace in other branches
  1. 5 video.module \video_menu()
  2. 6.5 video.module \video_menu()
  3. 6 video.module \video_menu()
  4. 6.2 video.module \video_menu()
  5. 6.4 video.module \video_menu()
  6. 7.2 video.module \video_menu()

Implementation of hook_menu().

File

./video.module, line 21
video.module

Code

function video_menu() {
  $items = array();
  $items['admin/settings/video'] = array(
    'title' => 'Video',
    'description' => 'Configure different aspects of the video module and its plugins',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'video_admin_settings',
    ),
    'file' => 'video.admin.inc',
    'access arguments' => array(
      'administer site configuration',
    ),
  );
  return $items;
}