You are here

function jw_player_ctools_plugin_api in JW Player 7

Same name and namespace in other branches
  1. 7.2 jw_player.module \jw_player_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./jw_player.module, line 209
Adds a theme function which allows theme developers to use the JW Player.

Code

function jw_player_ctools_plugin_api($owner, $api) {
  if ($owner == 'jw_player' && $api == 'jw_player_presets') {
    return array(
      'version' => 1,
    );
  }
}