You are here

function brightcove_ctools_plugin_api in Brightcove Video Connect 7.4

Same name and namespace in other branches
  1. 7.3 brightcove.module \brightcove_ctools_plugin_api()
  2. 7.5 brightcove.module \brightcove_ctools_plugin_api()

Implementation of hook_ctools_plugin_api().

Tell CTools that we support the default_mymodule_presets API.

File

./brightcove.module, line 147
Brightcove module is an integration layer between any modules using Brightcove API. It makes all necessary checks for the API and makes settings available to the user.

Code

function brightcove_ctools_plugin_api($owner, $api) {
  if ($owner == 'brightcove' && $api == 'brightcove') {
    return array(
      'version' => 1,
    );
  }
}