can't move a rebroadcast show infront of it's original recorded show, know how to print form element errors out in a custom view script, removed show content option from a recorded show's context menu.
21 lines
974 B
PHTML
21 lines
974 B
PHTML
<fieldset>
|
|
<dl>
|
|
<dt id="add_show_hosts_rebroadcast_day-label" class="block-display">
|
|
<label for="add_show_rebroadcast_day" class="optional">Choose Days:</label>
|
|
</dt>
|
|
<dd id="add_show_rebroadcast_day-element" class="block-display clearfix">
|
|
<ul class="formrow-repeat">
|
|
<?php for($i=1; $i<=5; $i++): ?>
|
|
<li>
|
|
<?php echo $this->element->getElement('add_show_rebroadcast_absolute_date_'.$i) ?>
|
|
<span class="inline-text">@</span>
|
|
<?php echo $this->element->getElement('add_show_rebroadcast_absolute_time_'.$i) ?>
|
|
<?php if($this->element->getElement('add_show_rebroadcast_absolute_time_'.$i)->hasErrors()) : ?>
|
|
<?php echo var_dump($this->element->getElement('add_show_rebroadcast_absolute_time_'.$i)->getMessages()); ?>
|
|
<?php endif; ?>
|
|
</li>
|
|
<?php endfor; ?>
|
|
</ul>
|
|
</dd>
|
|
</dl>
|
|
</fieldset>
|