CC-1985: Automatic rebroadcast of recorded content

populates rebroadcast show instances now, added a new table cc_show_rebroadcast,
added columns record, rebroadcast, instance_id, file_id to cc_show_instances table.
added column record to cc_show_days.
This commit is contained in:
naomiaro 2011-03-15 12:05:41 -04:00
parent eb2caf0adc
commit 6ef4169315
36 changed files with 4776 additions and 155 deletions

View file

@ -0,0 +1,23 @@
<?php
class Application_Form_AddShowRR extends Zend_Form_SubForm
{
public function init()
{
// Add record element
$this->addElement('checkbox', 'add_show_record', array(
'label' => 'Record',
'required' => false,
));
// Add record element
$this->addElement('checkbox', 'add_show_rebroadcast', array(
'label' => 'Rebroadcast',
'required' => false,
));
}
}