You are here

function prebid_bidder_process in Doubleclick for Publishers (DFP) 7.2

Process function for the bidder plugin type.

Parameters

\stdClass $plugin:

array $info:

1 string reference to 'prebid_bidder_process'
prebid_bidder_plugin_type in prebid/includes/bidder.plugin-type.inc
Defines the bidder plugin type.

File

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

Code

function prebid_bidder_process(&$plugin, $info) {
  $name = isset($plugin['name']) ? $plugin['name'] : ucwords(str_replace('_', ' ', $plugin['name']));
  $plugin += array(
    'name' => $name,
    'params' => array(),
    'timeout' => 1500,
    'buckets' => array(),
    'handler' => FALSE,
    'tags' => array(),
    'multiple' => FALSE,
  );
}