You are here

function prebid_ctools_plugin_api in Doubleclick for Publishers (DFP) 7.2

Implements hook_ctools_plugin_api().

Tell ctools that we support the prebid API.

File

prebid/prebid.module, line 65

Code

function prebid_ctools_plugin_api($owner, $api) {
  if ($owner == 'prebid' && $api == 'prebid') {
    return array(
      'version' => 1,
      'path' => drupal_get_path('module', 'prebid') . '/includes',
    );
  }
}