You are here

function media_youtube_ctools_plugin_api in Media: YouTube 7.3

Same name and namespace in other branches
  1. 7 media_youtube.module \media_youtube_ctools_plugin_api()
  2. 7.2 media_youtube.module \media_youtube_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

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

Code

function media_youtube_ctools_plugin_api($module, $api) {
  if ($module == 'file_entity' && $api == 'file_default_displays') {
    return array(
      'version' => 1,
    );
  }
}