You are here

function prebid_get_bidders in Doubleclick for Publishers (DFP) 7.2

Fetches all bidder plugins.

Return value

An array of arrays with information about all available prebid bidder plugins.

2 calls to prebid_get_bidders()
prebid_preprocess_dfp_tag in prebid/prebid.module
Implements hook_preprocess_HOOK().
prebid_preprocess_html in prebid/prebid.module
Implements hook_preprocess_HOOK().

File

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

Code

function prebid_get_bidders() {
  ctools_include('plugins');
  return ctools_get_plugins('prebid', 'bidder');
}