summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_search_form.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2012-05-23 13:46:14 -0400
committerLukas Fleischer <archlinux@cryptocrack.de>2012-07-06 11:26:19 +0200
commit941f310068be4eac7d8a8679944a04495f67461e (patch)
treefc0bafc5be2ac7ad98471f825e2494b63138a9d3 /web/template/pkg_search_form.php
parent0d05a26a5a63ded65e8be207f74807478b914267 (diff)
downloadaurweb-941f310068be4eac7d8a8679944a04495f67461e.tar.xz
Search form layout overhaul
* Always show advanced search criteria. * Rearrange filter criteria (list filters first, list sorting and pagination options behind). * HTML cleanup. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de> Signed-off-by: canyonknight <canyonknight@gmail.com>
Diffstat (limited to 'web/template/pkg_search_form.php')
-rw-r--r--web/template/pkg_search_form.php244
1 files changed, 123 insertions, 121 deletions
diff --git a/web/template/pkg_search_form.php b/web/template/pkg_search_form.php
index 3e291e1..7997bb1 100644
--- a/web/template/pkg_search_form.php
+++ b/web/template/pkg_search_form.php
@@ -1,126 +1,128 @@
-<?php include_once('pkgfuncs.inc.php') ?>
+<?php
+include_once('pkgfuncs.inc.php');
-<div class='pgbox'>
-<form action='packages.php' method='get'>
+$searchby = array(
+ 'nd' => __('Name, Description'),
+ 'n' => __('Name Only'),
+ 'x' => __('Exact name'),
+ 'm' => __('Maintainer'),
+ 's' => __('Submitter')
+);
+
+$outdated_flags = array(
+ '' => __('All'),
+ 'on' => __('Flagged'),
+ 'off' => __('Not Flagged')
+);
+
+$sortby = array(
+ 'n' => __('Name'),
+ 'c' => __('Category'),
+ 'v' => __('Votes'),
+ 'w' => __('Voted'),
+ 'o' => __('Notify'),
+ 'm' => __('Maintainer'),
+ 'a' => __('Age')
+);
+
+$orderby = array(
+ 'a' => __('Ascending'),
+ 'd' => __('Descending')
+);
+
+$pages = array(50, 100, 250);
+?>
+
+<div id="pkglist-search" class="box filter-criteria">
<h2><?php print __("Search Criteria"); ?></h2>
-<div>
- <input type='hidden' name='O' value='0' />
- <input type='text' name='K' size='30' value="<?php if (isset($_REQUEST["K"])) { 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 (isset($_REQUEST['C']) && $_REQUEST['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'), 'x' => __('Exact name'), 'm' => __('Maintainer'), 's' => __('Submitter'));
- foreach ($searchby as $k => $v):
- if (isset($_REQUEST['SeB']) && $_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'), 'v' => __('Votes'), 'w' => __('Voted'), 'o' => __('Notify'), 'm' => __('Maintainer'), 'a' => __('Age'));
- foreach ($sortby as $k => $v):
- if (isset($_REQUEST['SB']) && $_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 (isset($_REQUEST['SO']) && $_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(50, 100, 250);
- foreach ($pages as $i):
- if (isset($_REQUEST['PP']) && $_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>
- <select name='outdated'>
- <?php
- $outdated_flags = array('' => __('All'), 'on' => __('Flagged'), 'off' => __('Not Flagged'));
- foreach ($outdated_flags as $k => $v):
- if (isset($_REQUEST['outdated']) && $_REQUEST['outdated'] == $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>
- </ul>
- </div>
- <?php endif; ?>
+<form action='packages.php' method='get'>
+ <p><input type='hidden' name='O' value='0' /></p>
+
+ <fieldset>
+ <legend><?php echo __('Enter search criteria') ?></legend>
+ <div>
+ <label for="id_category"><?php print __("Category"); ?></label>
+ <select name='C' id="id_category">
+ <option value='0'><?php print __("Any"); ?></option>
+ <?php foreach (pkgCategories() as $id => $cat): ?>
+ <?php if (isset($_REQUEST['C']) && $_REQUEST['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; ?>
+ <?php endforeach; ?>
+ </select>
+ </div>
+ <div>
+ <label for="id_method"><?php print __("Search by"); ?></label>
+ <select name='SeB'>
+ <?php foreach ($searchby as $k => $v): ?>
+ <?php if (isset($_REQUEST['SeB']) && $_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; ?>
+ <?php endforeach; ?>
+ </select>
+ </div>
+ <div>
+ <label for="id_q"><?php print __("Keywords"); ?></label>
+ <input type='text' name='K' size='30' value="<?php if (isset($_REQUEST["K"])) { print stripslashes(trim(htmlspecialchars($_REQUEST["K"], ENT_QUOTES))); } ?>" maxlength='35' />
+ </div>
+ <div>
+ <label for="id_out_of_date"><?php echo __('Out of Date'); ?></label>
+ <select name='outdated'>
+ <?php foreach ($outdated_flags as $k => $v): ?>
+ <?php if (isset($_REQUEST['outdated']) && $_REQUEST['outdated'] == $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; ?>
+ <?php endforeach; ?>
+ </select>
+ </div>
+ <div>
+ <label for="id_sort_by"><?php print __("Sort by"); ?></label>
+ <select name='SB'>
+ <?php foreach ($sortby as $k => $v): ?>
+ <?php if (isset($_REQUEST['SB']) && $_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; ?>
+ <?php endforeach; ?>
+ </select>
+ </div>
+ <div>
+ <label for="id_order_by"><?php print __("Sort order"); ?></label>
+ <select name='SO'>
+ <?php foreach ($orderby as $k => $v): ?>
+ <?php if (isset($_REQUEST['SO']) && $_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; ?>
+ <?php endforeach; ?>
+ </select>
+ </div>
+ <div>
+ <label for="id_per_page"><?php print __("Per page"); ?></label>
+ <select name='PP'>
+ <?php foreach ($pages as $i): ?>
+ <?php if (isset($_REQUEST['PP']) && $_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; ?>
+ <?php endforeach; ?>
+ </select>
+ </div>
+ <div>
+ <label>&nbsp;</label>
+ <input type='submit' class='button' name='do_Search' value='<?php print __("Go"); ?>' />
+ <input type='submit' class='button' name='do_Orphans' value='<?php print __("Orphans"); ?>' />
+ </div>
+ </fieldset>
</form>
</div>