summaryrefslogtreecommitdiff
path: root/uber.php
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2022-03-22 20:42:48 +0800
committerchai <chaifix@163.com>2022-03-22 20:42:48 +0800
commitf980b021f1f1df132c4599cb4c1fb127a1ae289a (patch)
tree55c1cf92b0465e238a5ce99d73e883d860d5ab80 /uber.php
parent627b8e416d138112ad20b1299aca21dccebcd11c (diff)
+ album
Diffstat (limited to 'uber.php')
-rw-r--r--uber.php37
1 files changed, 0 insertions, 37 deletions
diff --git a/uber.php b/uber.php
deleted file mode 100644
index fee329d..0000000
--- a/uber.php
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php // 处理所有操作请求
-
-require_once 'checkadmin.php' ;
-require_once 'music.php';
-
-$op = $_GET['op'];
-
-switch($op) {
- case "DEL_TAG":
- $tag_id = $_GET['tid'];
- handle_delete_tag($tag_id);
- break;
- case "DEL_MUSIC":
- $music_id = $_GET['mid'];
- handle_delete_music($music_id);
- break;
- case 'DEL_ALBUM' :
- $album_id = $_GET['aid'];
- handle_delete_album($album_id);
- break;
- default:
- echo 'Unkown op ' . $op;
-}
-
-function handle_delete_music($music_id){
-
-}
-
-function handle_delete_tag($tag_id) {
-
-}
-
-function handle_delete_album($album_id) {
-
-}
-
-?> \ No newline at end of file