summaryrefslogtreecommitdiffstats
path: root/server/playlist.ajax.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-09-03 06:26:44 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-09-03 06:26:44 +0000
commiteeeece05dbbcee311d9909d73a3f0b7c9bcecad4 (patch)
tree0aea1273e965dbd092f8f4be091315474404edb4 /server/playlist.ajax.php
parent8d863f33df12760f335b1e347d510a80fdf25d7d (diff)
downloadampache-eeeece05dbbcee311d9909d73a3f0b7c9bcecad4.tar.gz
ampache-eeeece05dbbcee311d9909d73a3f0b7c9bcecad4.tar.bz2
ampache-eeeece05dbbcee311d9909d73a3f0b7c9bcecad4.zip
added the ability to delete songs from a playlist, now if you could only add them
Diffstat (limited to 'server/playlist.ajax.php')
-rw-r--r--server/playlist.ajax.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/server/playlist.ajax.php b/server/playlist.ajax.php
new file mode 100644
index 00000000..f2198faa
--- /dev/null
+++ b/server/playlist.ajax.php
@@ -0,0 +1,49 @@
+<?php
+/*
+
+ Copyright (c) 2001 - 2007 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 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.
+
+*/
+
+/**
+ * Sub-Ajax page, requires AJAX_INCLUDE as one
+ */
+if (AJAX_INCLUDE != '1') { exit; }
+
+switch ($_REQUEST['action']) {
+ case 'delete_track':
+ // Create the object and remove the track
+ $playlist = new Playlist($_REQUEST['playlist_id']);
+ $playlist->format();
+ if ($playlist->has_access()) {
+ $playlist->delete_track($_REQUEST['track']);
+ }
+
+ $object_ids = $playlist->get_items();
+ ob_start();
+ require_once Config::get('prefix') . '/templates/show_playlist_songs.inc.php';
+ $results['browse_content'] = ob_get_contents();
+ ob_end_clean();
+ break;
+ default:
+ $results['rfc3514'] = '0x1';
+ break;
+} // switch on action;
+
+// We always do this
+echo xml_from_array($results);
+?>