Files
SAe-PHP-S2/application/views/album_details.php

48 lines
2.1 KiB
PHP
Raw Permalink Normal View History

2024-06-04 22:46:59 +02:00
<!DOCTYPE html>
<html>
<body>
2024-06-05 08:29:15 +02:00
<section class="section">
<div class="container">
2024-06-16 17:39:26 +02:00
<div class="columns is-vcentered">
2024-06-05 08:29:15 +02:00
<div class="column is-one-third">
2024-06-16 17:39:26 +02:00
<figure class="image is-square">
2024-06-05 08:29:15 +02:00
<img src="data:image/jpeg;base64,<?= base64_encode($album->jpeg) ?>" alt="<?= $album->albumName ?> Cover">
</figure>
</div>
<div class="column">
2024-06-16 17:39:26 +02:00
<h1 class="title"><?= $album->albumName ?></h1>
<p><strong>Artiste:</strong> <?= $album->artistName ?></p>
2024-06-05 08:29:15 +02:00
<p><strong>Genre:</strong> <?= $album->genreName ?></p>
2024-06-16 17:39:26 +02:00
<p><strong>Année:</strong> <?= $album->year ?></p>
2024-06-05 08:29:15 +02:00
</div>
</div>
2024-06-16 17:39:26 +02:00
<h2 class="title is-4">Chansons</h2>
<div class="table-container">
<table class="table is-striped is-fullwidth">
<thead>
<tr>
<th>Titre</th>
2024-06-19 14:08:59 +02:00
<th>Action</th>
2024-06-16 17:39:26 +02:00
</tr>
</thead>
<tbody>
<?php foreach ($songs as $song): ?>
<tr>
<td><?= anchor("music/view/{$song->trackId}", $song->trackName) ?></td>
2024-06-19 14:08:59 +02:00
<td>
<form method="post" action="<?= site_url('playlist/selectPlaylist') ?>">
<input type="hidden" name="itemId" value="<?= $song->trackId ?>">
<input type="hidden" name="itemType" value="song">
<button type="submit" class="button is-link">Ajouter à la playlist</button>
</form>
</td>
2024-06-16 17:39:26 +02:00
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
2024-06-05 08:29:15 +02:00
</div>
</section>
2024-06-04 22:46:59 +02:00
</body>
</html>