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');
}
}

View File

@@ -57,6 +57,13 @@ class Playlist extends CI_Controller {
$create = $this->model_music->createPlaylist($name_playlist);
redirect('playlist');
}
public function addSongToPlaylist(){
$songName = $this->input->post('song');
$playlistId = $this->input->post('playlist');
$this->model_music->addSongToPlaylist($songName, $playlistId);
redirect('playlist');
}
}

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');
}
}