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
|
<?php
/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
/**
*
* LICENSE: GNU General Public License, version 2 (GPLv2)
* Copyright 2001 - 2013 Ampache.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License v2
* as published by the Free Software Foundation.
*
* 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.
*
*/
?>
<?php UI::show_box_top(T_('Play Random Selection'), 'box box_random'); ?>
<form id="random" method="post" enctype="multipart/form-data" action="<?php echo Config::get('web_path'); ?>/random.php?action=get_advanced&type=<?php echo $_REQUEST['type'] ? scrub_out($_REQUEST['type']) : 'song'; ?>">
<table class="tabledata" cellpadding="3" cellspacing="0">
<tr id="search_location">
<td><?php if ($_REQUEST['type'] != 'song') { ?><a href="<?php echo Config::get('web_path'); ?>/random.php?action=advanced&type=song"><?php echo T_('Songs'); ?></a><?php } else { echo T_('Songs'); } ?></td>
<td><?php if ($_REQUEST['type'] != 'album') { ?><a href="<?php echo Config::get('web_path'); ?>/random.php?action=advanced&type=album"><?php echo T_('Albums'); ?></a><?php } else { echo T_('Albums'); } ?></td>
<td><?php if ($_REQUEST['type'] != 'artist') { ?><a href="<?php echo Config::get('web_path'); ?>/random.php?action=advanced&type=artist"><?php echo T_('Artists'); ?></a><?php } else { echo T_('Artists'); } ?></td>
</tr>
<tr id="search_blank_line"><td> </td></tr>
</table>
<table class="tabledata" cellpadding="0" cellspacing="0">
<tr id="search_item_count">
<td><?php echo T_('Item count'); ?></td>
<td>
<select name="random">
<?php
foreach(array(1, 5, 10, 20, 30, 50, 100, 500, 1000) as $i) {
echo "\t\t\t" . '<option value="' . $i . '" ' .
($_POST['random'] == $i
? 'selected="selected"' : '') . '>' .
$i . "</option>\n";
}
echo "\t\t\t" . '<option value="-1" ' .
($_POST['random'] == '-1'
? 'selected="selected"' : '') . '>' .
T_('All') . "</option>\n";
?>
</select>
</td>
</tr>
<tr id="search_length">
<td><?php echo T_('Length'); ?></td>
<td>
<?php $name = 'length_' . intval($_POST['length']); ${$name} = ' selected="selected"'; ?>
<select name="length">
<?php
echo "\t\t\t" . '<option value="0" ' .
($_POST['length'] == 0
? 'selected="selected"' : '') . '>' .
T_('Unlimited') . "</option>\n";
foreach(array(15, 30, 60, 120, 240, 480, 960) as $i) {
echo "\t\t\t" . '<option value="' . $i . '" ' .
($_POST['length'] == $i
? 'selected="selected"' : '') . '>';
if ($i < 60) {
printf(T_ngettext('%d minute', '%d minutes', $i), $i);
}
else {
printf(T_ngettext('%d hour', '%d hours', $i / 60), $i / 60);
}
echo "</option>\n";
}
?>
</select>
</td>
</tr>
<tr id="search_size_limit">
<td><?php echo T_('Size Limit'); ?></td>
<td>
<select name="size_limit">
<?php
echo "\t\t\t" . '<option value="0" ' .
($_POST['size_limit'] == 0
? 'selected="selected"' : '') . '>' .
T_('Unlimited') . "</option>\n";
foreach(array(64, 128, 256, 512, 1024) as $i) {
echo "\t\t\t" . '<option value="' . $i . '"' .
($_POST['size_limit'] == $i
? 'selected="selected"' : '') . '>' .
format_bytes($i * 1048576) . "</option>\n";
}
?>
</select>
</td>
</tr>
</table>
<?php require Config::get('prefix') . '/templates/show_rules.inc.php'; ?>
<div class="formValidation">
<input type="submit" value="<?php echo T_('Enqueue'); ?>" />
</div>
</form>
<?php UI::show_box_bottom(); ?>
<div id="browse">
<?php
if (is_array($object_ids)) {
$browse = new Browse();
$browse->set_type('song');
$browse->save_objects($object_ids);
$browse->show_objects();
$browse->store();
echo Ajax::observe('window','load',Ajax::action('?action=refresh_rightbar','playlist_refresh_load'));
}
?>
</div>
|