allow for default ad to be selected on widget

This commit is contained in:
John Bintz 2009-07-01 21:21:28 -04:00
parent 99ab15273a
commit fbf3a7824c
2 changed files with 18 additions and 15 deletions

View File

@ -365,6 +365,7 @@ class PluginWonderful {
echo '<p>';
echo 'Select an adbox:<br />';
foreach ($this->publisher_info->adboxes as $box) {
if (empty($instance['adboxid'])) { $instance['adboxid'] = $box->adboxid; }
echo '<label>';
echo '<input type="radio" name="'
. $field_names['adboxid']

View File

@ -468,8 +468,9 @@ class PluginWonderfulTest extends PHPUnit_Framework_TestCase {
(object)array('adboxid' => '345'),
);
foreach (array('', '123') as $sample_adbox_id) {
ob_start();
$this->pw->_render_adbox_admin(array('adboxid' => '123', 'center' => 1), array('adboxid' => 'adname', 'center' => 'centername'));
$this->pw->_render_adbox_admin(array('adboxid' => $sample_adbox_id, 'center' => 1), array('adboxid' => 'adname', 'center' => 'centername'));
$source = ob_get_clean();
$this->assertTrue(($xml = _to_xml($source)) !== false);
@ -483,6 +484,7 @@ class PluginWonderfulTest extends PHPUnit_Framework_TestCase {
$this->assertTrue(_xpath_test($xml, $xpath, $value), $xpath);
}
}
}
function providerTestRenderPre28Widget() {
return array(