mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-06 03:49:56 +02:00
117 lines
4.7 KiB
PHP
117 lines
4.7 KiB
PHP
<?php
|
|
/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
|
|
/**
|
|
*
|
|
* LICENSE: GNU General Public License, version 2 (GPLv2)
|
|
* Copyright 2001 - 2015 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 AmpConfig::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 AmpConfig::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 AmpConfig::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 AmpConfig::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(ngettext('%d minute', '%d minutes', $i), $i);
|
|
} else {
|
|
printf(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"' : '') . '>' .
|
|
UI::format_bytes($i * 1048576) . "</option>\n";
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<?php require AmpConfig::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>
|