summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/show_playtype_switch.inc.php3
-rw-r--r--templates/show_xspf_player.inc.php79
2 files changed, 1 insertions, 81 deletions
diff --git a/templates/show_playtype_switch.inc.php b/templates/show_playtype_switch.inc.php
index ce30bac2..9debe89b 100644
--- a/templates/show_playtype_switch.inc.php
+++ b/templates/show_playtype_switch.inc.php
@@ -36,7 +36,6 @@ if (Preference::has_access('play_type')) {
<?php } if (Config::get('allow_democratic_playback')) { ?>
<option value="democratic" <?php echo $is_democratic; ?>><?php echo T_('Democratic'); ?></option>
<?php } ?>
- <option value="xspf_player" <?php echo $is_xspf_player; ?>><?php echo T_('Flash Player'); ?></option>
<option value="html5_player" <?php echo $is_html5_player; ?>><?php echo _('HTML5 Player'); ?></option>
</select>
<?php echo Ajax::observe('play_type_select','change',Ajax::action('?page=stream&action=set_play_type','play_type_select','play_type_form'),'1'); ?>
@@ -44,6 +43,6 @@ if (Preference::has_access('play_type')) {
<?php
} // if they have access
// Else just show what it currently is
-else { echo ucwords(Config::get('play_type')); }
+else { echo T_(ucwords(Config::get('play_type'))); }
?>
</div>
diff --git a/templates/show_xspf_player.inc.php b/templates/show_xspf_player.inc.php
deleted file mode 100644
index 5cfb52d1..00000000
--- a/templates/show_xspf_player.inc.php
+++ /dev/null
@@ -1,79 +0,0 @@
-<?php
-/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
-/**
- *
- * 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.
- *
- */
-?>
-<html>
-<head><title>Ampache XSPF Player</title></head>
-<body style="margin:0px; padding:0px; border:0px; background-color: #000000">
-<script language=JavaScript>
-<!--
-//Disable right mouse click Script to hide the source url for the flash player it prevents ripping music a bit.
-//When used together with locked songs this will help just a bit more.
-//function clickIE4(){
-//if (event.button==2){
-//return false;
-//}
-//}
-
-//function clickNS4(e){
-//if (document.layers||document.getElementById&&!document.all){
-//if (e.which==2||e.which==3){
-//return false;
-//}
-//}
-//}
-
-//if (document.layers){
-//document.captureEvents(Event.MOUSEDOWN);
-//document.onmousedown=clickNS4;
-//}
-//else if (document.all&&!document.getElementById){
-//document.onmousedown=clickIE4;
-//}
-//document.oncontextmenu=new Function("return false")
-
-// -->
-</script>
-<div id="mp3player">
-<?php
-if (file_exists(Config::get('prefix')."/modules/flash/xspf_jukebox.swf")) {
- $player_url = sprintf("%s/modules/flash/xspf_jukebox.swf?autoplay=true&repeat_playlist=true&crossFade=false&shuffle=false&skin_url=%s/modules/flash/Original/&playlist_url=%s",Config::get('web_path'),Config::get('web_path'),$play_url);
-?>
-<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="400" height="170" id="xspf_player" align="middle">
- <param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />
- <param name="allowScriptAccess" value="sameDomain" />
- <param name="movie" value="<?php echo $player_url; ?>" />
- <param name="quality" value="high" />
- <param name="bgcolor" value="#ffffff" />
- <param name="type" value="application/x-shockwave-flash" />
- <param name="width" value="400" />
- <param name="height" value="170" />
- <param name="name" value="xspf_player" />
- <param name="align" value="middle" />
- <embed src="<?php echo $player_url; ?>" quality="high" bgcolor="#ffffff" width="400" height="170" name="xspf_player" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
-</object>
-<?php } else { ?>
-<p style="color:#ffffff;">Debian Policy requires the removal of the XSPF Flash Player, please see /usr/share/doc/ampache/README.Debian.gz for details and a work around.</p>
-<?php } ?>
-</div>
-
-</body>
-</html>