mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* vastly improved input validation * content and type validation occurs when filter is created * contextual filters like itemTypes are now only applied in context
61 lines
2.6 KiB
PHP
61 lines
2.6 KiB
PHP
<?php
|
|
$this->brick('header');
|
|
$f = $this->filter; // shorthand
|
|
?>
|
|
|
|
<div class="main" id="main">
|
|
<div class="main-precontents" id="main-precontents"></div>
|
|
<div class="main-contents" id="main-contents">
|
|
|
|
<?php
|
|
$this->brick('announcement');
|
|
|
|
$this->brick('pageTemplate', ['fi' => empty($f['query']) ? null : ['query' => $f['query'], 'menuItem' => 101]]);
|
|
?>
|
|
<div class="text"><h1><?=$this->name; ?> <?=$this->brick('redButtons'); ?></h1></div>
|
|
<div id="fi" style="display: <?=(empty($f['query']) ? 'none' : 'block'); ?>;">
|
|
<form action="?filter=sounds" method="post" name="fi" onsubmit="return fi_submit(this)" onreset="return fi_reset(this)">
|
|
<div class="rightpanel">
|
|
<div style="float: left"><?=Util::ucFirst(Lang::game('type')).Lang::main('colon'); ?></div>
|
|
<small><a href="javascript:;" onclick="document.forms['fi'].elements['ty[]'].selectedIndex = -1; return false" onmousedown="return false"><?=Lang::main('clear'); ?></a></small>
|
|
<div class="clear"></div>
|
|
<select name="ty[]" size="6" multiple="multiple" class="rightselect">
|
|
<?php
|
|
foreach (Lang::sound('cat') as $i => $str):
|
|
if ($str && $i < 1000):
|
|
echo ' <option value="'.$i.'"'.(isset($f['ty']) && in_array($i, (array)$f['ty']) ? ' selected' : null).' >'.$str."</option>\n";
|
|
endif;
|
|
endforeach;
|
|
?>
|
|
</select>
|
|
</div>
|
|
<table>
|
|
<tr>
|
|
<td><?=Util::ucFirst(Lang::main('name')).Lang::main('colon'); ?></td>
|
|
<td colspan="2">
|
|
<table><tr>
|
|
<td> <input type="text" name="na" size="30" <?=(isset($f['na']) ? 'value="'.Util::htmlEscape($f['na']).'" ' : null); ?>/></td>
|
|
</tr></table>
|
|
</td>
|
|
</tr><tr>
|
|
</table>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<div class="padded">
|
|
<input type="submit" value="<?=Lang::main('applyFilter'); ?>" />
|
|
<input type="reset" value="<?=Lang::main('resetForm'); ?>" />
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
<div class="pad clear"></div>
|
|
|
|
<?php $this->brick('lvTabs'); ?>
|
|
|
|
<div class="clear"></div>
|
|
</div><!-- main-contents -->
|
|
</div><!-- main -->
|
|
|
|
<?php $this->brick('footer'); ?>
|