Файл: adultscript-2.0.3-pro/files/admin/templates/default/nuevo_tickeredit.tpl.php
Строк: 85
<?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_ads_menu'); ?>
<div class="tabContent clearfix">
<br />
<?php if($this->ad): ?>
<form name="nuevo-form" id="nuevo-form" method="post" action="<?php echo ADMIN_URL; ?>/index.php?q=nuevo/tickeredit&id=<?php echo $this->ad['ID']; ?>">
<center><div class="tab1" style="display:table;text-align:left;">
<br />
<fieldset class="clearfix">
<legend style="color:#990000;">Edit Ticker</legend>
<br />
<div class="required">
<label for="title">Message</label>
<input name="content" type="text" value="<?php echo e($this->ad['content']); ?>" maxlength="255" class="large" /> (max 255 chars)
</div>
<div class="required">
<label for="start">Show time start</label>
<input name="start" type="text" value="<?php echo e($this->ad['start']); ?>" class="tiny" /> (in seconds)
</div>
<div class="required">
<label for="runtimet">Show time runtime</label>
<input name="runtime" type="text" value="<?php echo e($this->ad['start']); ?>" class="tiny" /> (in seconds)
</div>
<div class="required">
<label for="scrollspeed">Scroll speed (for long texts)</label>
<input name="scrollspeed" type="text" value="<?php echo e($this->ad['scrollspeed']); ?>" class="tiny" /> (1-10)
</div>
<div class="opacity">
<label for="opacity">Background opacity</label>
<input name="opacity" type="text" value="<?php echo e($this->ad['opacity']); ?>" class="tiny" /> (25-100)
</div>
<div class="required">
<label for="position">Position</label>
<select name="position">
<option value="top" selected="selected">Top</option>
<option value="bottom"<?php if($this->ad['position']=='bottom') echo 'selected="selected"'; ?>>Bottom</option>
</select>
</div>
<div class="required">
<label for="url">Click URL</label>
<input name="url" type="text" value="<?php echo e($this->ad['url']); ?>" class="large" />
</div>
<div class="required">
<label for="active">Link target</label>
<select name="target">
<option value="_self" selected="selected">_self</option>
<option value="_blank"<?php if($this->ad['target']=='_blank') echo 'selected="selected"'; ?>>_blank</option>
</select>
</div>
<div class="required">
<label for="active">Active</label>
<select name="active">
<option value="0" selected="selected">No</option>
<option value="1"<?php if($this->ad['active']=='1') echo 'selected="selected"'; ?>>Yes</option>
</select>
</div>
<br />
<div class="submit">
<input name="update_ad" type="submit" class="button butDef" value=" Update Ticker " />
</div>
<br />
</div></center>
</form>
<?php else: ?>
<div class="none">Invalid ad ID</div>
<?php endif; ?>
</div>
</div>
</div>
</div>