blob: 36f4b1cae51ea489f9c3b351c96527cbb3ec2aaa (
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
|
<?php
/*
Copyright (c) 2001 - 2005 Ampache.org
All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/*!
@header search template
@discussion This is the template for the searches... amazing!
7/16/05 Do it in smaller bar format - sigger
*/
?>
<form name="search" method="post" action="<?php echo conf('web_path'); ?>/search.php" enctype="multipart/form-data" style="Display:inline">
<table class="tabledata" cellspacing="0" cellpadding="3" border="0" style="clear:both;" width="100%">
<tr class="table-header">
<td colspan="4"><b><?php echo _("Search Ampache"); ?>...</b></td>
</tr>
<tr class="<?php echo flip_class(); ?>">
<td><input type="text" name="search_string" value="<?php echo $_REQUEST['search_string']; ?>" /></td>
<td>
<?php
$search_type = $_REQUEST['search_field'];
if (isset($_REQUEST['search_field'])) {
$search_field = $_REQUEST['search_field'];
${$search_field} = 1;
} else {
$search_field = conf('search_field');
${$search_field} = 1;
}
if (isset($_REQUEST['search_type'])) {
$search_type = $_REQUEST['search_type'];
${$search_type} = 1;
} else {
$search_type = conf('search_type');
${$search_type} = 1;
}
?>
<select name="search_field">
<option value="artist" <?php if ($artist) { echo 'selected="selected"'; } ?>>Artist</option>
<option value="album" <?php if ($album) { echo 'selected="selected"'; } ?>>Album</option>
<option value="song_title" <?php if ($song_title) { echo 'selected="selected"'; } ?>>Song Title</option>
<option value="song_genre" <?php if ($song_genre) { echo 'selected="selected"'; } ?>>Song Genre</option>
<option value="song_year" <?php if ($song_year) { echo 'selected="selected"'; } ?>>Song Year</option>
<option value="song_bitrate" <?php if ($song_bitrate) { echo 'selected="selected"'; } ?>>Song Bitrate</option>
<option value="song_min_bitrate" <?php if ($song_min_bitrate) { echo 'selected="selected"'; } ?>>Minimum Bitrate</option>
<option value="song_filename" <?php if ($song_filename) { echo 'selected="selected"'; } ?>>Song Filename</option>
</select>
</td>
<td>
<input class="button" type="submit" value="<?php echo _("Search"); ; ?>" />
<input type="hidden" name="action" value="search" />
<input type="hidden" name="search_type" value="fuzzy" />
</td>
</tr>
</table>
</form>
|