You are here

function media_youtube_video_was_rejected in Media: YouTube 6

1 call to media_youtube_video_was_rejected()
template_preprocess_media_youtube_flash in themes/media_youtube.theme.inc
The embedded flash displaying the youtube video.

File

./media_youtube.module, line 449
Embedded Video Field provider file for YouTube.com.

Code

function media_youtube_video_was_rejected($video_id) {
  $status = media_youtube_video_full_status($video_id);
  return $status['status'] == t('rejected');
}