You are here

bidder.plugin-type.inc in Doubleclick for Publishers (DFP) 7.2

File

prebid/includes/bidder.plugin-type.inc
View source
<?php

/**
 * @file
 */

/**
 * Defines the bidder plugin type.
 *
 * @param array $items
 */
function prebid_bidder_plugin_type(&$items) {
  $items['bidder'] = array(
    'label' => 'Bidders',
    'use hooks' => FALSE,
    'process' => array(
      'function' => 'prebid_bidder_process',
      'file' => 'bidder.inc',
      'path' => drupal_get_path('module', 'prebid') . '/includes',
    ),
    'classes' => array(
      'handler',
    ),
  );
}

Functions

Namesort descending Description
prebid_bidder_plugin_type Defines the bidder plugin type.