ajouter song playlist

This commit is contained in:
2024-06-05 19:36:03 +02:00
parent ef10b58bb0
commit ba57a3adc3
7 changed files with 39 additions and 14 deletions

View File

@@ -20,8 +20,9 @@ class Albums extends CI_Controller {
if (empty($songs)) {
$songs = [];
}
$playlists = $this->model_music->getPlaylist();
$this->load->view('layout/header');
$this->load->view('song_album_list', ['songs' => $songs]);
$this->load->view('song_album_list', ['songs' => $songs, 'playlists' => $playlists]);
$this->load->view('layout/footer');
}
}