You are here

function prebid_get_bidder in Doubleclick for Publishers (DFP) 7.2

Fetches a specific prebid bidder plugin.

Parameters

string $plugin_name: Name of the plugin.

Return value

An array with information about the requested bidder.

File

prebid/includes/bidder.inc, line 72
bidder.inc

Code

function prebid_get_bidder($plugin_name) {
  ctools_include('plugins');
  return ctools_get_plugins('prebid', 'bidder', $plugin_name);
}