aurweb/web/template/pkg_search_form.php
Loui Chang cbf6349e6b pkg_search_form: Properly call translation function to translate strings.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
2010-08-19 23:27:54 -04:00

118 lines
3.9 KiB
PHP

<?php include_once('pkgfuncs.inc') ?>
<div class='pgbox'>
<form action='packages.php' method='get'>
<div class='pgboxtitle'>
<span class='f3'><?php print __("Search Criteria"); ?></span>
<input type='hidden' name='O' value='0' />
<input type='text' name='K' size='30' value="<?php print stripslashes(trim(htmlspecialchars($_REQUEST["K"], ENT_QUOTES))); ?>" maxlength='35' />
<input type='submit' style='min-width:80px' class='button' name='do_Search' value='<?php print __("Go"); ?>' />
<?php if (!empty($_GET['detail'])): ?>
<input type='submit' style='min-width:80px' class='button' name='do_Orphans' value='<?php print __("Orphans"); ?>' />
<?php endif; ?>
<a href="?<?php print mkurl('detail=' . ((!empty($_GET['detail'])) ? 0 : 1) ) ?>"><?php print __("Advanced"); ?></a>
</div>
<?php if (!empty($_GET['detail'])): ?>
<div id="advanced-search" class="blue">
<input type="hidden" name="detail" value="1" />
<ul>
<li>
<label><?php print __("Category"); ?></label>
<select name='C'>
<option value='0'><?php print __("Any"); ?></option>
<?php
foreach (pkgCategories() as $id => $cat):
if (intval($_GET["C"]) == $id):
?>
<option value="<?php print $id ?>" selected="selected"><?php print $cat; ?></option>
<?php else: ?>
<option value="<?php print $id ?>"><?php print $cat; ?></option>
<?php
endif;
endforeach;
?>
</select>
</li>
<li>
<label><?php print __("Search by"); ?></label>
<select name='SeB'>
<?php
$searchby = array('nd' => __('Name, Description'), 'n' => __('Name Only'), 'm' => __('Maintainer'), 's' => __('Submitter'));
foreach ($searchby as $k => $v):
if ($_REQUEST['SeB'] == $k):
?>
<option value="<?php print $k; ?>" selected="selected"><?php print $v; ?></option>
<?php else: ?>
<option value="<?php print $k; ?>"><?php print $v; ?></option>
<?php
endif;
endforeach;
?>
</select>
</li>
<li>
<label><?php print __("Sort by"); ?></label>
<select name='SB'>
<?php
$sortby = array('n' => __('Name'), 'c' => __('Category'), 'l' => __('Location'), 'v' => __('Votes'), 'w' => __('Voted'), 'o' => __('Notify'), 'm' => __('Maintainer'), 'a' => __('Age'));
foreach ($sortby as $k => $v):
if ($_REQUEST['SB'] == $k):
?>
<option value='<?php print $k; ?>' selected="selected"><?php print $v; ?></option>
<?php else: ?>
<option value='<?php print $k; ?>'><?php print $v; ?></option>
<?php
endif;
endforeach;
?>
</select>
</li>
<li>
<label><?php print __("Sort order"); ?></label>
<select name='SO'>
<?php
$orderby = array('a' => __('Ascending'), 'd' => __('Descending'));
foreach ($orderby as $k => $v):
if ($_REQUEST['SO'] == $k):
?>
<option value='<?php print $k; ?>' selected="selected"><?php print $v; ?></option>
<?php else: ?>
<option value='<?php print $k; ?>'><?php print $v; ?></option>
<?php
endif;
endforeach;
?>
</select>
</li>
<li>
<label><?php print __("Per page"); ?></label>
<select name='PP'>
<?php
$pages = array(25, 50, 75, 100);
foreach ($pages as $i):
if ($_REQUEST['PP'] == $i):
?>
<option value="<?php print $i; ?>" selected="selected"><?php print $i; ?></option>
<?php else: ?>
<option value="<?php print $i; ?>"><?php print $i; ?></option>
<?php
endif;
endforeach;
?>
</select>
</li>
<li>
<label><?php echo __('Out of Date'); ?></label>
<?php if (isset($_GET['outdated'])): ?>
<input type="checkbox" name="outdated" checked />
<?php else: ?>
<input type="checkbox" name="outdated" />
<?php endif; ?>
</li>
</ul>
</div>
<?php endif; ?>
</form>
</div>