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:
parent
cb3f4dd31e
commit
13847e738b
6 changed files with 223 additions and 80 deletions
|
@ -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:',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue