SAE_2.02/CodeIgniter-3.1.13/application/views/artiste_details.php

44 lines
2.0 KiB
PHP
Raw Normal View History

2024-05-20 22:42:38 +02:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="<?php echo base_url('assets/css/artiste_details'); ?>">
2024-05-20 22:42:38 +02:00
<title>Détails de l'artiste <?php echo $artiste->name; ?></title>
</head>
<body>
<div class="artist-details">
<h1>Détails de l'artiste <?php echo $artiste->name; ?></h1>
2024-05-22 22:05:48 +02:00
<p><strong>Genre le plus utilisé :</strong> <?php echo $mostUsedGenre->genreName; ?></p>
2024-05-20 22:42:38 +02:00
<h2>Albums de <?php echo $artiste->name; ?></h2>
<ul class="albums-list">
<?php foreach($albums as $album): ?>
<li>
<div class="album-details">
<h3><?php echo $album->name; ?></h3>
<p><strong>Année :</strong> <?php echo $album->year; ?></p>
<p><strong>Genre :</strong> <?php echo $album->genreName; ?></p>
<?php if (!empty($album->jpeg)): ?>
<img src="data:image/jpeg;base64,<?php echo base64_encode($album->jpeg); ?>" alt="Couverture de l'album">
<?php else: ?>
<span class="no-cover">Aucune couverture disponible</span>
<?php endif; ?>
2024-05-22 22:05:48 +02:00
<!-- Liste des musiques de l'album -->
<ul class="songs-list">
<?php foreach($album->tracks as $track): ?>
<li>
<span><?php echo $track->number . '.' . $track->diskNumber; ?></span>
<span><?php echo $track->songName; ?></span>
<span><?php echo gmdate("i:s", $track->duration); ?></span>
</li>
<?php endforeach; ?>
</ul>
2024-05-20 22:42:38 +02:00
</div>
</li>
<?php endforeach; ?>
</ul>
</div>
</body>
</html>