adding bi-weekly show option. new structure allows for different repeat types to be specified.

new playlist builder css/images.
This commit is contained in:
naomiaro 2011-02-05 23:21:52 -05:00
parent cb3f4dd31e
commit 13847e738b
6 changed files with 223 additions and 80 deletions

View file

@ -29,6 +29,15 @@ class Application_Form_AddShowRepeats extends Zend_Form_SubForm
'viewScript' => 'form/add-show-checkbox.phtml'
))));
//Add type select
$this->addElement('select', 'add_show_repeat_type', array(
'required' => true,
'multiOptions' => array(
"0" => "weekly",
"1" => "bi-weekly"
),
));
// Add end date element
$this->addElement('text', 'add_show_end_date', array(
'label' => 'Date End:',