You are here

function theme_video_inprogress in Video 7.2

Same name and namespace in other branches
  1. 6.5 video_formatter.inc \theme_video_inprogress()
  2. 6.3 types/uploadfield/uploadfield_formatter.inc \theme_video_inprogress()
  3. 6.4 video_formatter.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_video_formatter_player in ./video.theme.inc
Default video cck formatter.

File

./video.theme.inc, line 186
Theme related functions for the Video module.

Code

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