function theme_video_ffmpeg_helper_inprogress in Video 6.2
Same name and namespace in other branches
- 5 plugins/video_ffmpeg_helper/video_ffmpeg_helper.module \theme_video_ffmpeg_helper_inprogress()
- 6 plugins/video_ffmpeg_helper/video_ffmpeg_helper.module \theme_video_ffmpeg_helper_inprogress()
Displays a "encoding in progress message"
1 theme call to theme_video_ffmpeg_helper_inprogress()
- video_ffmpeg_helper_nodeapi in plugins/
video_ffmpeg_helper/ video_ffmpeg_helper.module - Implementation of hook_nodeapi()
File
- plugins/
video_ffmpeg_helper/ video_ffmpeg_helper.module, line 513 - Provide some api for use ffmpeg. Simplify video nodes creation.
Code
function theme_video_ffmpeg_helper_inprogress($node) {
return '<div class="video-ffmpeg-helper-inprogress">' . t('This video is currently being processed. Please wait.') . '</div>';
}