Файл: adultscript-2.0.3-pro/files/admin/templates/default/nuevo_embed.tpl.php
Строк: 122
<?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('nuevo_menu'); ?>
<div class="content clearfix">
<?php echo $this->fetch('nuevo_embed_menu'); ?>
<div class="tabContent clearfix">
<form name="nuevo-form" id="nuevo-form" method="post" action="<?php echo ADMIN_URL; ?>/index.php?q=nuevo/embed">
<center><div class="tab1" style="display:table;text-align:left;">
<fieldset class="clearfix" style="padding:8px;">
<legend style="color:#990000;">Nuevoplayer Embed Settings</legend>
<br />
<div class="required">
<label for="skin">Player skin</label>
<select name="skin" id="skin">
<option value="" selected="selected">Default black</option>
<?php foreach ($this->skins as $skn): ?>
<option value="<?php echo $skn; ?>"<?php if($this->player['skin']==$skn) echo ' selected="selected"'; ?>><?php echo $skn; ?></option>
<?php endforeach; ?>
</select>
</div>
<div class="required">
<label for="playbar">Playbar type (flash only)</label>
<select name="playbar">
<option value="bottom" selected="selected">Bottom (default)</option>
<option value="over"<?php if($this->player['playbar']=='over') echo 'selected="selected"'; ?>>Over screen</option>
</select>
</div>
<div class="required">
<label for="player_height">Website player width</label>
<input name="player_width" type="text" value="<?php echo e($this->player['player_width']); ?>" class="tiny" /> px
</div>
<div class="required">
<label for="player_height">Website player height</label>
<input name="player_height" type="text" value="<?php echo e($this->player['player_height']); ?>" class="tiny" /> px
</div>
</fieldset>
</fieldset>
<br />
<fieldset class="clearfix">
<legend style="color:#990000;">Basic plugins</legend>
<br />
<div class="required">
<label for="plugin_midroll">Preroll Ads Plugin</label>
<select name="plugin_preroll">
<option value="0" selected="selecetd">No</option>
<option value="1"<?php if($this->player['plugin_preroll'] == '1') echo 'selected="selected"'; ?>>Yes</option>
</select>
</div>
<div class="required">
<label for="plugin_midroll">Midroll Ads Plugin</label>
<select name="plugin_midroll">
<option value="0" selected="selecetd">No</option>
<option value="1"<?php if($this->player['plugin_midroll'] == '1') echo 'selected="selected"'; ?>>Yes</option>
</select>
</div>
<div class="required">
<label for="plugin_overlay">Overlay Ads Plugin</label>
<select name="plugin_overlay">
<option value="0" selected="selecetd">No</option>
<option value="1"<?php if($this->player['plugin_overlay'] == '1') echo 'selected="selected"'; ?>>Yes</option>
</select>
</div>
<div class="required">
<label for="plugin_ticker">Ticker Plugin</label>
<select name="plugin_ticker">
<option value="0" selected="selecetd">No</option>
<option value="1"<?php if($this->player['plugin_ticker'] == '1') echo 'selected="selected"'; ?>>Yes</option>
</select>
</div>
</fieldset>
<br />
<fieldset class="clearfix">
<legend style="color:#990000;">Misc settings</legend>
<br />
<div class="required">
<label for="autostart">Autostart</label>
<select name="autostart">
<option value="1" selected="selected">Yes</option>
<option value="0"<?php if($this->player['autostart']=='0') echo 'selected="selected"'; ?>>No</option>
</select>
</div>
<div class="required">
<label for="usetooltips">Show tooltips</label>
<select name="usetooltips">
<option value="1" selected="selected">Yes</option>
<option value="0"<?php if($this->player['usetooltips']=='0') echo 'selected="selected"'; ?>>No</option>
</select>
</div>
<div class="required">
<label for="usetooltips">Video onclick action</label>
<select name="onclick">
<option value="play" selected="selected">Play/Pause</option>
<option value="url"<?php if($this->player['onclick']=='url') echo 'selected="selected"'; ?>>Go to video URL</option>
</select>
</div>
</fieldset>
<br />
<div class="submit">
<input name="submit_player_settings" type="submit" id="submit_player" class="button butDef" value=" Update Player Settings " />
</div>
</div></center>
<br />
</div>
</div>
</div>
</div>