-
Notifications
You must be signed in to change notification settings - Fork 0
/
album.php
71 lines (57 loc) · 2.25 KB
/
album.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php include('includes/includeFiles.php');
if(isset($_GET['id'])){
$albumId = $_GET['id'];
}else{
header('Location: index.php');
}
$album = new Album($conn, $albumId);
$artist = $album->getArtist();
?>
<div class="entityInfo">
<div class="leftSection">
<img src="<?php echo $album->getArtworkPath(); ?>" alt="<?php echo $album->getTitle(); ?>">
</div>
<div class="rightSection">
<h2><?php echo $album->getTitle(); ?></h2>
<p>By <?php echo $artist->getName(); ?></p>
<span><?php echo $album->getNumberOfSongs(); ?> Songs</span>
</div>
</div>
<div class="trackListContainer">
<ul class="trackList">
<?php
$songIdArray = $album->getSongIds();
$i = 1;
foreach($songIdArray as $songId){
$albumSong = new Song($conn, $songId);
$albumArtist = $albumSong->getArtist();
echo "<li class='trackListRow'>
<div class='trackCount'>
<img class='play' src='assets/images/icons/play-white.png' onclick='setTrack(\"".$albumSong->getId()."\", tempPlaylist, true)'>
<span class='trackNumber'>$i</span>
</div>
<div class='trackInfo'>
<span class='trackName'>".$albumSong->getTitle()."</span>
<span class='artistName'>".$albumArtist->getName()."</span>
</div>
<div class='trackOptions'>
<input type='hidden' class='songId' value='".$albumSong->getId()."'>
<img class='optionButton' src='assets/images/icons/more.png' onclick='showOptionMenu(this)'>
</div>
<div class='trackDuration'>
<span class='duration'>".$albumSong->getDuration()."</span>
</div>
</li>";
$i++;
}
?>
<script>
var tempSongIds = '<?php echo json_encode($songIdArray); ?>';
tempPlaylist = JSON.parse(tempSongIds)
</script>
</ul>
</div>
<nav class="optionMenu">
<input type="hidden" class="songId">
<?php echo PLaylist::getPlaylistDropdown($conn, $userLoggedIn->getUsername()); ?>
</nav>