48 lines
2.3 KiB
PHTML
48 lines
2.3 KiB
PHTML
<fieldset class="padded stream-setting-global" style="margin-top: 15px">
|
|
<legend>Input Stream Settings</legend>
|
|
<dl class="zend_form">
|
|
<dt id="auto_enable_live_stream-label">
|
|
<label class="optional" for="auto_enable_live_stream"><?php echo $this->element->getElement('auto_enable_live_stream')->getLabel() ?> :
|
|
</label>
|
|
</dt>
|
|
<dd id="auto_enable_live_stream-element">
|
|
<?php echo $this->element->getElement('auto_enable_live_stream') ?>
|
|
<?php if($this->element->getElement('auto_enable_live_stream')->hasErrors()) : ?>
|
|
<ul class='errors'>
|
|
<?php foreach($this->element->getElement('auto_enable_live_stream')->getMessages() as $error): ?>
|
|
<li><?php echo $error; ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
</dd>
|
|
<dt id="master_username-label">
|
|
<label class="optional" for="master_username"><?php echo $this->element->getElement('master_username')->getLabel() ?> :
|
|
</label>
|
|
</dt>
|
|
<dd id="master_username-element">
|
|
<?php echo $this->element->getElement('master_username') ?>
|
|
<?php if($this->element->getElement('master_username')->hasErrors()) : ?>
|
|
<ul class='errors'>
|
|
<?php foreach($this->element->getElement('master_username')->getMessages() as $error): ?>
|
|
<li><?php echo $error; ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
</dd>
|
|
<dt id="master_password-label">
|
|
<label class="optional" for="master_password"><?php echo $this->element->getElement('master_password')->getLabel() ?> :
|
|
</label>
|
|
</dt>
|
|
<dd id="master_password-element">
|
|
<?php echo $this->element->getElement('master_password') ?>
|
|
<?php if($this->element->getElement('master_password')->hasErrors()) : ?>
|
|
<ul class='errors'>
|
|
<?php foreach($this->element->getElement('master_password')->getMessages() as $error): ?>
|
|
<li><?php echo $error; ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
</dd>
|
|
</dl>
|
|
</fieldset>
|