Format code using php-cs-fixer

This commit is contained in:
jo 2021-10-11 16:10:47 +02:00
parent 43d7dc92cd
commit d52c6184b9
352 changed files with 17473 additions and 17041 deletions

View file

@ -2,30 +2,28 @@
class Application_Form_AddShowAbsoluteRebroadcastDates extends Zend_Form_SubForm
{
public function init()
{
$this->setDecorators(array(
array('ViewScript', array('viewScript' => 'form/add-show-rebroadcast-absolute.phtml'))
));
$this->setDecorators([
['ViewScript', ['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");
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->addValidator('date', false, ['YYYY-MM-DD']);
$text->setRequired(false);
$text->setDecorators(array('ViewHelper'));
$text->setDecorators(['ViewHelper']);
$this->addElement($text);
$text = new Zend_Form_Element_Text("add_show_rebroadcast_time_absolute_$i");
$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->addValidator('date', false, ['HH:mm']);
$text->addValidator('regex', false, ['/^[0-2]?[0-9]:[0-5][0-9]$/', 'messages' => _('Invalid character entered')]);
$text->setRequired(false);
$text->setDecorators(array('ViewHelper'));
$text->setDecorators(['ViewHelper']);
$this->addElement($text);
}
}
@ -35,63 +33,64 @@ class Application_Form_AddShowAbsoluteRebroadcastDates extends Zend_Form_SubForm
$elements = $this->getElements();
foreach ($elements as $element) {
if ($element->getType() != 'Zend_Form_Element_Hidden') {
$element->setAttrib('disabled','disabled');
$element->setAttrib('disabled', 'disabled');
}
}
}
public function isValid($formData) {
public function isValid($formData)
{
if (parent::isValid($formData)) {
return $this->checkReliantFields($formData);
} else {
return false;
return $this->checkReliantFields($formData);
}
return false;
}
public function checkReliantFields($formData)
{
$noError = true;
for ($i=1; $i<=10; $i++) {
for ($i = 1; $i <= 10; ++$i) {
$valid = true;
$day = $formData['add_show_rebroadcast_date_absolute_'.$i];
$time = $formData['add_show_rebroadcast_time_absolute_'.$i];
$day = $formData['add_show_rebroadcast_date_absolute_' . $i];
$time = $formData['add_show_rebroadcast_time_absolute_' . $i];
if (trim($day) == "" && trim($time) == "") {
if (trim($day) == '' && trim($time) == '') {
continue;
}
if (trim($day) == "") {
$this->getElement('add_show_rebroadcast_date_absolute_'.$i)->setErrors(array(_("Day must be specified")));
if (trim($day) == '') {
$this->getElement('add_show_rebroadcast_date_absolute_' . $i)->setErrors([_('Day must be specified')]);
$valid = false;
}
if (trim($time) == "") {
$this->getElement('add_show_rebroadcast_time_absolute_'.$i)->setErrors(array(_("Time must be specified")));
if (trim($time) == '') {
$this->getElement('add_show_rebroadcast_time_absolute_' . $i)->setErrors([_('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_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);
$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
$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 = $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")));
$this->getElement('add_show_rebroadcast_time_absolute_' . $i)->setErrors([_('Must wait at least 1 hour to rebroadcast')]);
$valid = false;
$noError = false;
}