2015-10-21 23:30:24 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Application_Form_PodcastPreferences extends Zend_Form_SubForm {
|
|
|
|
|
|
|
|
public function init() {
|
|
|
|
$isPrivate = Application_Model_Preference::getStationPodcastPrivacy();
|
2015-11-13 20:57:32 +01:00
|
|
|
$stationPodcastPrivacy = new Zend_Form_Element_Radio("stationPodcastPrivacy");
|
|
|
|
$stationPodcastPrivacy->setLabel(_('Feed Privacy'));
|
2015-10-21 23:30:24 +02:00
|
|
|
$stationPodcastPrivacy->setMultiOptions(array(
|
|
|
|
_("Public"),
|
|
|
|
_("Private"),
|
|
|
|
));
|
2015-11-17 21:20:05 +01:00
|
|
|
$stationPodcastPrivacy->setSeparator(' ');
|
|
|
|
$stationPodcastPrivacy->addDecorator('HtmlTag', array('tag' => 'dd',
|
|
|
|
'id'=>"stationPodcastPrivacy-element",
|
|
|
|
'class' => 'radio-inline-list',
|
|
|
|
));
|
2015-10-21 23:30:24 +02:00
|
|
|
$stationPodcastPrivacy->setValue($isPrivate);
|
|
|
|
$this->addElement($stationPodcastPrivacy);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|