You are here

function google_admanager_gam_admin_form in DFP Small Business (Google Ad Manager) 6.3

1 string reference to 'google_admanager_gam_admin_form'
gam.inc in plugins/ad_providers/gam.inc

File

plugins/ad_providers/gam.inc, line 19

Code

function google_admanager_gam_admin_form(&$form_state, $conf) {
  $form = array();
  $form['account'] = array(
    '#type' => 'textfield',
    '#title' => t('DFP Property Code'),
    '#default_value' => $conf['account'],
    '#size' => 30,
    '#maxlength' => 40,
    '#description' => t('See detailed instruction in README.txt'),
  );
  return $form;
}