123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?php
- class Application_Form_AddShowAbsoluteRebroadcastDates extends Zend_Form_SubForm
- {
- public function init()
- {
- $this->setDecorators(array(
- array('ViewScript', array('viewScript' => 'form/add-show-rebroadcast-absolute.phtml'))
- ));
- for ($i=1; $i<=10; $i++) {
- $text = new Zend_Form_Element_Text("add_show_rebroadcast_date_absolute_$i");
- $text->setAttrib('class', 'input_text');
- $text->addFilter('StringTrim');
- $text->addValidator('date', false, array('YYYY-MM-DD'));
- $text->setRequired(false);
- $text->setDecorators(array('ViewHelper'));
- $this->addElement($text);
- $text = new Zend_Form_Element_Text("add_show_rebroadcast_time_absolute_$i");
- $text->setAttrib('class', 'input_text');
- $text->addFilter('StringTrim');
- $text->addValidator('date', false, array('HH:mm'));
- $text->addValidator('regex', false, array('/^[0-2]?[0-9]:[0-5][0-9]$/', 'messages' => _('Invalid character entered')));
- $text->setRequired(false);
- $text->setDecorators(array('ViewHelper'));
- $this->addElement($text);
- }
- }
- public function disable()
- {
- $elements = $this->getElements();
- foreach ($elements as $element) {
- if ($element->getType() != 'Zend_Form_Element_Hidden') {
- $element->setAttrib('disabled','disabled');
- }
- }
- }
- public function isValid($formData) {
- if (parent::isValid($formData)) {
- return $this->checkReliantFields($formData);
- } else {
- return false;
- }
- }
- public function checkReliantFields($formData)
- {
- $noError = true;
- for ($i=1; $i<=10; $i++) {
- $valid = true;
- $day = $formData['add_show_rebroadcast_date_absolute_'.$i];
- $time = $formData['add_show_rebroadcast_time_absolute_'.$i];
- if (trim($day) == "" && trim($time) == "") {
- continue;
- }
- if (trim($day) == "") {
- $this->getElement('add_show_rebroadcast_date_absolute_'.$i)->setErrors(array(_("Day must be specified")));
- $valid = false;
- }
- if (trim($time) == "") {
- $this->getElement('add_show_rebroadcast_time_absolute_'.$i)->setErrors(array(_("Time must be specified")));
- $valid = false;
- }
- if ($valid === false) {
- $noError = false;
- continue;
- }
- $show_start_time = $formData['add_show_start_date']." ".$formData['add_show_start_time'];
- $show_end = new DateTime($show_start_time);
- $duration = $formData['add_show_duration'];
- $duration = explode(":", $duration);
- $show_end->add(new DateInterval("PT$duration[0]H"));
- $show_end->add(new DateInterval("PT$duration[1]M"));
- $show_end->add(new DateInterval("PT1H"));//min time to wait until a rebroadcast
- $rebroad_start = $day." ".$formData['add_show_rebroadcast_time_absolute_'.$i];
- $rebroad_start = new DateTime($rebroad_start);
- if ($rebroad_start < $show_end) {
- $this->getElement('add_show_rebroadcast_time_absolute_'.$i)->setErrors(array(_("Must wait at least 1 hour to rebroadcast")));
- $valid = false;
- $noError = false;
- }
- }
- return $noError;
- }
- }
|