1<?php
2/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
3/**
4 *
5 * LICENSE: GNU Affero General Public License, version 3 (AGPL-3.0-or-later)
6 * Copyright 2001 - 2020 Ampache.org
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20 *
21 */
22
23use Ampache\Config\AmpConfig;
24use Ampache\Module\System\Core;
25use Ampache\Module\Util\Ui;
26
27?>
28<?php Ui::show_box_top(T_('Importing a Playlist from a File'), 'box box_import_playlist'); ?>
29<form method="post" name="import_playlist" action="<?php echo AmpConfig::get('web_path'); ?>/playlist.php" enctype="multipart/form-data">
30    <table class="tabledata">
31        <tr>
32            <td>
33                <?php echo T_('Filename'); ?> (<?php echo AmpConfig::get('catalog_playlist_pattern'); ?>):
34            </td>
35            <td><input type="file" name="filename" value="<?php echo scrub_out(Core::get_request('filename')); ?>" /></td>
36        </tr>
37        <tr>
38            <td><?php echo T_('Type'); ?>:</td>
39            <td>
40                <select name="default_type">
41                    <option value="private"><?php echo T_("Private"); ?></option>
42                    <option value="public" selected="selected"><?php echo T_("Public"); ?></option>
43                </select>
44            </td>
45        </tr>
46    </table>
47    <div class="formValidation">
48        <input type="hidden" name="action" value="import_playlist" />
49        <input type="submit" value="<?php echo T_('Import Playlist'); ?>" />
50    </div>
51</form>
52<?php Ui::show_box_bottom(); ?>
53