function jw_player_ctools_plugin_api in JW Player 7.2
Same name and namespace in other branches
- 7 jw_player.module \jw_player_ctools_plugin_api()
Implements hook_ctools_plugin_api().
File
- ./
jw_player.module, line 623 - 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,
);
}
}