diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-02-29 06:14:46 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-02-29 06:14:46 +0000 |
commit | 2c337852cff31297d681fb87d3098cc3d9041101 (patch) | |
tree | 9853ce94387c4cc7756575598dfb1e2de44a8589 /templates/show_localplay.inc.php | |
parent | c1f2b35e2a18b0752746f5db5794cf18714bc71d (diff) | |
download | ampache-2c337852cff31297d681fb87d3098cc3d9041101.tar.gz ampache-2c337852cff31297d681fb87d3098cc3d9041101.tar.bz2 ampache-2c337852cff31297d681fb87d3098cc3d9041101.zip |
major corrections to reading of preferences and a few misc fixes which I have now forgotten
Diffstat (limited to 'templates/show_localplay.inc.php')
-rw-r--r-- | templates/show_localplay.inc.php | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/templates/show_localplay.inc.php b/templates/show_localplay.inc.php deleted file mode 100644 index 281a925c..00000000 --- a/templates/show_localplay.inc.php +++ /dev/null @@ -1,47 +0,0 @@ -<?php -/* - - Copyright (c) 2001 - 2006 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. - -*/ - -$web_path = conf('web_path'); -$localplay = init_localplay(); -?> -<?php show_box_top(ucfirst($localplay->type) . ' ' . _('Localplay')); ?> -<table> -<tr> - <td valign="top"> - <strong><?php echo _('Actions'); ?>:</strong><br /> - <?php if ($localplay->has_function('delete_all')) { ?> - <div><a class="button" href="<?php echo $web_path; ?>/localplay.php?action=delete_all"><?php echo _('Clear Playlist'); ?></a></div> - <?php } ?> - </td><td> - <?php $add_info = "&return=1"; ?> - <?php require_once(conf('prefix') . '/templates/show_localplay_status.inc.php'); ?> - </td> -</tr> -</table> -<?php show_box_bottom(); ?> - - -<?php show_box_top(_('Current Playlist')); ?> -<div id="lp_playlist"> -<?php require_once(conf('prefix') . '/templates/show_localplay_playlist.inc.php'); ?> -</div> -<?php show_box_bottom(); ?> |