function google_admanager_gam_admin_form in DFP Small Business (Google Ad Manager) 6.3
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;
}