You are here

function media_youtube_emfield_status in Media: YouTube 6

Implementation of hook_emfield_status().

File

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

Code

function media_youtube_emfield_status($item, $field = NULL, $module = 'emvideo') {

  // Return the availability of the video.
  $status = media_youtube_check_status($item['value']);
  return $status;
}