function forward_block_formbody in Forward 6
File
- ./
forward.module, line 1372
Code
function forward_block_formbody($block_options) {
$form['forward_block_type'] = array(
'#type' => 'radios',
'#title' => t('Block Type'),
'#default_value' => variable_get('forward_block_type', ""),
'#options' => $block_options,
'#description' => t('Choose the block type'),
'#required' => FALSE,
'#attributes' => array(
'class' => 'forward-block-type',
),
);
return $form;
}