$saved ? 'AdSense settings saved' : null,
'fields' => array(
array(
'label' => 'AdSense Publisher ID:',
'value' => qa_html(qa_opt('adsense_publisher_id')),
'tags' => 'name="adsense_publisher_id_field"',
'note' => 'Example: pub-1234567890123456',
),
array(
'label' => 'AdSense Ad Unit ID:',
'value' => qa_html(qa_opt('adsense_adunit_id')),
'tags' => 'name="adsense_adunit_id_field"',
'note' => 'Example: 8XXXXX1',
),
),
'buttons' => array(
array(
'label' => 'Save Changes',
'tags' => 'name="adsense_save_button"',
),
),
);
}
public function output_widget($region, $place, $themeobject, $template, $request, $qa_content)
{
$format = 'auto';
switch ($region) {
case 'full':
case 'main':
$format = 'horizontal';
break;
case 'side':
$format = 'vertical';
break;
}
?>