You are here

function video_embed_field_ctools_plugin_api in Video Embed Field 7.2

Implements hook_ctools_plugin_api().

Tell CTools that we support the default_mymodule_presets API.

File

./video_embed_field.module, line 43
Provides a simple field for easily embedding videos from youtube or vimeo

Code

function video_embed_field_ctools_plugin_api($owner, $api) {
  if ($owner == 'video_embed_field' && $api == 'default_video_embed_styles') {
    return array(
      'version' => 1,
    );
  }
}