You are here

function theme_video_upload_busy in Video 5

Same name and namespace in other branches
  1. 6 types/video_upload/video_upload.module \theme_video_upload_busy()
  2. 6.2 types/video_upload/video_upload.module \theme_video_upload_busy()

Renders a 'upload in progress' message

1 theme call to theme_video_upload_busy()
video_upload_v_form in types/video_upload/video_upload.module
Implementation of hook_v_form()

File

types/video_upload/video_upload.module, line 618
Enable Uploaded videos support for video module.

Code

function theme_video_upload_busy() {
  return '<div id="sending" style="display: none;">
         <h3>' . t('Sending video... please wait.') . '</h3>
            <img src="' . base_path() . drupal_get_path('module', 'video_upload') . '/busy.gif' . '" alt="' . t('Sending video... please wait.') . '"/>
            <p>' . t('Please wait while your video is uploading.') . '<br /><a href="#" id="video_upload_cancel_link">' . t('abort upload.') . '</a></p>
            </div>';
}