You are here

function theme_video_ffmpeg_helper_inprogress in Video 6

Same name and namespace in other branches
  1. 5 plugins/video_ffmpeg_helper/video_ffmpeg_helper.module \theme_video_ffmpeg_helper_inprogress()
  2. 6.2 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 536
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>';
}