12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <fieldset id="add_show_rebroadcast_relative">
- <dl>
- <dt id="add_show_hosts_rebroadcast_repeat_day-label" class="block-display">
- <label for="add_show_rebroadcast_repeat_day" class="optional"><?php echo _("Repeat Days:"); ?></label>
- </dt>
- <dd id="add_show_rebroadcast_repeat_day-element" class="block-display clearfix">
- <ul class="formrow-repeat">
- <?php for($i=1; $i<=10; $i++): ?>
- <li <?php if(($i > 1)
- && ($this->element->getElement('add_show_rebroadcast_date_'.$i)->getValue() == ""
- && $this->element->getElement('add_show_rebroadcast_time_'.$i)->getValue() == "")){echo 'style=display:none';} ?>>
- <?php echo $this->element->getElement('add_show_rebroadcast_date_'.$i) ?>
- <span class="inline-text">@</span>
- <?php echo $this->element->getElement('add_show_rebroadcast_time_'.$i) ?>
- <?php if($i > 1): ?>
- <a class="ui-button ui-button-icon-only ui-widget ui-state-default" id="remove_rebroadcast_<?php echo $i ?>">
- <span class="ui-icon ui-icon-closethick"></span>
- <span class="ui-button-text"><?php echo _("Remove") ?></span>
- </a>
- <?php endif; ?>
- <?php if(($this->element->getElement('add_show_rebroadcast_date_'.$i)->hasErrors())
- || ($this->element->getElement('add_show_rebroadcast_time_'.$i)->hasErrors())) : ?>
- <ul class='errors'>
- <?php $errors = array_merge(
- $this->element->getElement('add_show_rebroadcast_date_'.$i)->getMessages(),
- $this->element->getElement('add_show_rebroadcast_time_'.$i)->getMessages()
- );
- ?>
- <?php foreach($errors as $error): ?>
- <li><?php echo $error; ?></li>
- <?php endforeach; ?>
- </ul>
- <?php endif; ?>
- </li>
- <?php endfor; ?>
- </ul>
- <a class="ui-button ui-button-icon-only ui-widget ui-state-default add_absolute_rebroadcast_day">
- <span class="ui-icon ui-icon-plusthick"></span>
- <span class="ui-button-text"><?php echo _("Add") ?></span>
- </a>
- </dd>
- </dl>
- </fieldset>
|