You are here

function media_vimeo_ctools_plugin_api in Media: Vimeo 7.2

Same name and namespace in other branches
  1. 7 media_vimeo.module \media_vimeo_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

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

Code

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