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

@@ -10,8 +10,9 @@ class Song extends CI_Controller {
public function view($album_id){
$songs = $this->model_music->getSongOfAlbum($album_id);
$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');
}
}