You are here

function media_youtube_media_browser_plugin_info in Media: YouTube 7.2

Implements hook_media_browser_plugin_info().

Commented out for release versions, active in dev versions. To enable the YouTube media browser tab, uncomment this function.

File

./media_youtube.module, line 97
Provides a stream wrapper and formatters appropriate for accessing and displaying YouTube videos.

Code

function media_youtube_media_browser_plugin_info() {
  $info['youtube'] = array(
    'title' => t('YouTube'),
    'class' => 'MediaYouTubeBrowser',
  );
  return $info;
}