Файл: adultscript-2.0.3-pro/files/admin/templates/default/tools_synonyms_search.tpl.php
Строк: 64
<?php defined('_VALID') or die('Restricted Access!'); ?>
<div id="search" class="content"<?php if ($this->query == ''): echo ' style="display: none;"'; endif; ?>>
<form id="search-form" method="get" action="<?php echo CURRENT_URL; ?>">
<input name="q" type="hidden" value="tools/synonyms">
<fieldset>
<legend>Import Synonyms</legend>
<table width="100%" border="0" cellspacing="2" cellpadding="1" class="search">
<tr>
<td>
<div class="optional">
<label for="s" class="search">Word</label>
<input name="s" id="s" type="text" class="large" value="<?php if (isset($this->query)): echo e($this->query); endif; ?>" />
</div>
</td>
<td>
<div class="optional">
<label for="t" class="search">Method</label>
<select name="t" id="t">
<option value="fixed"<?php if ($this->type == 'fixed'): echo ' selected="selected"'; endif; ?>>Exact Match</option>
<option value="start"<?php if ($this->type == 'start'): echo ' selected="selected"'; endif; ?>>Starting With</option>
</select>
</div>
</td>
<td>
<div class="optional">
<label for="o" class="search">Order</label>
<select name="o" id="o">
<option value="ASC"<?php if ($this->order == 'ASC'): echo ' selected="selected"'; endif; ?>>Ascending</option>
<option value="DESC"<?php if ($this->order == 'DESC'): echo ' selected="selected"'; endif; ?>>Descending</option>
</select>
</div>
</td>
<td>
<div class="optional">
<label for="d" class="search">Display</label>
<select name="d" id="d">
<option value="10"<?php if ($this->display == '10'): echo ' selected="selected"'; endif; ?>>10</option>
<option value="20"<?php if ($this->display == '20'): echo ' selected="selected"'; endif; ?>>20</option>
<option value="50"<?php if ($this->display == '50'): echo ' selected="selected"'; endif; ?>>50</option>
<option value="100"<?php if ($this->display == '100'): echo ' selected="selected"'; endif; ?>>100</option>
</select>
</div>
</td>
</tr>
<tr>
<td colspan="4">
<div style="text-align: center; margin-top: 3px;">
<input type="submit" class="button butDef" value=" Search " />
</div>
</td>
</tr>
</table>
</fieldset>
</form>
</div>