You are here

function theme_video_inprogress in Video 6.3

Same name and namespace in other branches
  1. 6.5 video_formatter.inc \theme_video_inprogress()
  2. 6.4 video_formatter.inc \theme_video_inprogress()
  3. 7.2 video.theme.inc \theme_video_inprogress()
  4. 7 video.theme.inc \theme_video_inprogress()

Displays a "encoding in progress message"

1 theme call to theme_video_inprogress()
theme_uploadfield_formatter_video_plain in types/uploadfield/uploadfield_formatter.inc

File

types/uploadfield/uploadfield_formatter.inc, line 152
uploadfield formatter hooks and callbacks.

Code

function theme_video_inprogress() {
  return '<div class="video-ffmpeg-helper-inprogress">' . t('This video is currently being processed. Please wait.') . '</div>';
}