css pour playlist + php

This commit is contained in:
2024-06-05 13:51:23 +02:00
parent 370f210e23
commit 1768f21e86
10 changed files with 84 additions and 33 deletions

View File

@@ -20,11 +20,8 @@ class Albums extends CI_Controller {
if (empty($songs)) {
$songs = [];
}
log_message('debug', 'Songs: ' . print_r($songs, true));
$this->load->view('layout/header');
$this->load->view('song_album_list', ['songs' => $songs]);
$this->load->view('song_album_list', ['songs' => $songs, 'album' => $album]);
$this->load->view('layout/footer');
}
}