SAAS-661: Add mobile stream identifier on Stream Settings page

This commit is contained in:
drigato 2015-03-23 16:06:35 -04:00
parent e2ca218ac2
commit e32744668f
5 changed files with 20 additions and 3 deletions

View file

@ -53,6 +53,12 @@ class Application_Form_StreamSettingSubForm extends Zend_Form_SubForm
}
$this->addElement($enable);
$mobile = new Zend_Form_Element_Checkbox('mobile');
$mobile->setLabel(_('Good for mobile?'));
$mobile->setValue($setting[$prefix.'_mobile']);
$mobile->setDecorators(array('ViewHelper'));
$this->addElement($mobile);
$type = new Zend_Form_Element_Select('type');
$type->setLabel(_("Stream Type:"))
->setMultiOptions($stream_types)