summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_search_form.php
blob: 289f8b4a52da642015182d2a4ac7ee21f8800c48 (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
127
128
129
130
131
132
133
134
135
136
<?php include_once('pkgfuncs.inc') ?>

<form action='packages.php' method='get'>
<input type='hidden' name='O' value='0'>
<center>
<table cellspacing='3' class='boxSoft'>
<tr>
	<td class='boxSoftTitle' align='right'>
		<span class='f3'><?php print __("Search Criteria"); ?></span>
	</td>
</tr>
<tr>
	<td class='boxSoft'>
		<div id="search_box" class="blue">
			<label><?php print __("Keywords"); ?></label>
			<input type='text' name='K' size='20' value="<?php print stripslashes(trim(htmlspecialchars($_REQUEST["K"], ENT_QUOTES))); ?>" maxlength='35' />
			<?php if (!$_GET['detail']): ?><input type='submit' style='width:80px' class='button' name='do_Search' value='<?php print __("Go"); ?>' /><?php endif; ?>
			<a href="?<?php print mkurl('detail=' . (($_GET['detail']) ? 0 : 1) ) ?>">Advanced</a>
			<?php if ($_GET['detail']): ?>
			<div id="advanced">
				<input type="hidden" name="detail" value="1" />
				<ul>
					<li>
						<label><?php print __("Location"); ?></label>
						<select name='L'>
							<option value=0><?php print __("Any"); ?></option>
							<?php
							foreach (pkgLocations() as $id => $loc):
								if (intval($_GET["L"]) == $id):
							?>
							<option value="<?php print $id; ?>" selected="selected"><?php print $loc; ?></option>
							<?php else: ?>
							<option value="<?php print $id; ?>"><?php print $loc; ?></option>
							<?php
								endif;
							endforeach;
							?>
						</select>
					</li>
					<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', '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', '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>
				</ul>
				<input type='submit' style='width:80px' class='button' name='do_Search' value='<?php print __("Go"); ?>' />
				<input type='submit' style='width:80px'  class='button' name='do_Orphans' value='<?php print __("Orphans"); ?>' />
			</div>
			<?php endif; ?>
		</div>
	</td>
</tr>
</table>
</center>
</form>
<br />