function video_ffmpeg_helper_menu in Video 6.2
Same name and namespace in other branches
- 5 plugins/video_ffmpeg_helper/video_ffmpeg_helper.module \video_ffmpeg_helper_menu()
- 6 plugins/video_ffmpeg_helper/video_ffmpeg_helper.module \video_ffmpeg_helper_menu()
Implementation of hook_menu()
File
- plugins/
video_ffmpeg_helper/ video_ffmpeg_helper.module, line 52 - Provide some api for use ffmpeg. Simplify video nodes creation.
Code
function video_ffmpeg_helper_menu() {
$items = array();
$items['admin/settings/video/ffmpeg_helper'] = array(
'title' => 'Video ffmpeg Helper',
'description' => 'Administer video_ffmpeg_helper module settings',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'video_ffmpeg_helper_admin_settings',
),
'access arguments' => array(
'administer site configuration',
),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}