From 4d4308c46d4f7801c657cc79d2243e1a81831334 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Fri, 27 Oct 2023 22:29:56 +0200 Subject: Updated 32 files, added 279 files, deleted 3 files and renamed 14 files (automated) --- app/ui/listing.php | 189 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 189 insertions(+) create mode 100644 app/ui/listing.php (limited to 'app/ui/listing.php') diff --git a/app/ui/listing.php b/app/ui/listing.php new file mode 100644 index 0000000..9ad227f --- /dev/null +++ b/app/ui/listing.php @@ -0,0 +1,189 @@ + $album) { + foreach ($album["tracks"] as $track) { + $list[$track]["_albumID"] = $id; + } + } + + uasort($list, function ($a, $b) { + return strcmp($a["title"], $b["title"]); + }); + + $list = array_filter($list, function ($i) { + global $library; + return in_array($i["_albumID"], $library); + }); + } +} + +?> + + + + + + + + listing + + + + + + + + + + + + + + +
+
+
+ +

Songs

+ + + +
+ .jpg" style="height: 20vw; width: 20vw; border-radius: .75vw;"> +
+

+

+
+ + + ยท Hi-Res Lossless + +
+
+ +
+
+ + + + +
+
+ +

Add music to your library

+

Browse millions of songs and collect your favorites here.

+
Browse Mist
+
+
+ + +
+
Remove from library
+ +
+ + + +

+
+ + \ No newline at end of file -- cgit