Файл: adultscript-2.0.3-pro/files/admin/templates/default/flowplayer5.tpl.php
Строк: 59
<?php defined('_VALID') or die('Restricted Access!'); ?>
<?php echo $this->fetch('errors'); ?>
<?php echo $this->fetch('messages'); ?>
<?php echo $this->fetch('warnings'); ?>
<div id="container" class="clearfix">
<div id="page">
<?php echo $this->fetch('video_menu'); ?>
<div class="content clearfix">
<form id="videojs-config-form" method="post" action="<?php echo ADMIN_URL; ?>/index.php?q=flowplayer5">
<fieldset>
<legend>Configuration</legend>
<div class="required">
<label for="autoplay">Autoplay:</label>
<input name="autoplay" type="radio" class="radio" value="1"<?php if ($this->config['autoplay'] == '1'): echo ' checked="checked"'; endif; ?> /> Yes
<input name="autoplay" type="radio" id="autoplay" class="radio" value="0"<?php if ($this->config['autoplay'] == '0'): echo ' checked="checked"'; endif; ?> /> No
</div>
</fieldset>
<fieldset>
<legend>Logo</legend>
<div class="required">
<label for="url">URL</label>
<input name="url" type="text" id="url" class="mega" value="<?php echo $this->config['url']; ?>" />
</div>
<div class="required">
<label for="logo_position">Position</label>
<select name="position" id="position">
<option value="0"<?php if ($this->config['position'] == '0'): echo ' selected="selected"'; endif; ?>>Top Left</option>
<option value="1"<?php if ($this->config['position'] == '1'): echo ' selected="selected"'; endif; ?>>Top Right</option>
<option value="2"<?php if ($this->config['position'] == '2'): echo ' selected="selected"'; endif; ?>>Bottom Left</option>
<option value="3"<?php if ($this->config['position'] == '3'): echo ' selected="selected"'; endif; ?>>Bottom Right</option>
</select>
</div>
</fieldset>
<div class="submit">
<input name="submit_config" type="submit" id="submit_config" class="button butDef" value=" Update " />
</div>
</form>
</div>
</div>
</div>