function videojs_menu in Video.js (HTML5 Video Player) 7.3
Same name and namespace in other branches
- 6.2 videojs.module \videojs_menu()
- 6 videojs.module \videojs_menu()
- 7 videojs.module \videojs_menu()
- 7.2 videojs.module \videojs_menu()
Implements hook_menu().
File
- ./
videojs.module, line 16 - Provides an HTML5-compatible with Flash-fallback video player.
Code
function videojs_menu() {
$items = array();
$items['admin/config/media/videojs'] = array(
'title' => 'Video.js',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'videojs_settings_form',
),
'access arguments' => array(
'administer site configuration',
),
'description' => 'Configure the settings for the Video.js module.',
'file' => 'includes/videojs.admin.inc',
);
return $items;
}