function amp_block_configure in Accelerated Mobile Pages (AMP) 7
Implements hook_block_configure().
File
- ./
amp.module, line 785
Code
function amp_block_configure($delta = '') {
$form = array();
$adsense_blocks = _amp_get_adsense_block_ids();
$doubleclick_blocks = _amp_get_doubleclick_block_ids();
if (in_array($delta, $adsense_blocks) || in_array($delta, $doubleclick_blocks)) {
$form['width'] = array(
'#type' => 'textfield',
'#title' => t('Width'),
'#default_value' => variable_get($delta . '_width'),
'#maxlength' => 25,
'#size' => 20,
);
$form['height'] = array(
'#type' => 'textfield',
'#title' => t('Height'),
'#default_value' => variable_get($delta . '_height'),
'#maxlength' => 25,
'#size' => 20,
);
$form['data_ad_slot'] = array(
'#type' => 'textfield',
'#title' => t('Data ad slot'),
'#default_value' => variable_get($delta . '_data_ad_slot'),
'#maxlength' => 25,
'#size' => 20,
);
}
return $form;
}