summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_search_form.php
blob: 8b4191a0db36816af951ad2a9abe89ad2d9fef83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php include_once('pkgfuncs.inc.php') ?>

<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 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>
</div>