ajout song d un album a une playlist + correction bug supprimer song playlist
This commit is contained in:
@@ -16,9 +16,20 @@ class artistes extends CI_Controller {
|
||||
|
||||
public function view($AlbumsOfArtistId){
|
||||
$AlbumsOfArtists = $this->model_music->getAlbumsOfArtist($AlbumsOfArtistId);
|
||||
$playlists = $this->model_music->getPlaylist();
|
||||
$this->load->view('layout/header');
|
||||
$this->load->view('albums_artist_list',['AlbumsOfArtists'=>$AlbumsOfArtists]);
|
||||
$this->load->view('albums_artist_list', ['AlbumsOfArtists' => $AlbumsOfArtists, 'playlists' => $playlists, 'artist_id' => $AlbumsOfArtistId]);
|
||||
$this->load->view('layout/footer');
|
||||
}
|
||||
|
||||
public function addAllSongsToPlaylist(){
|
||||
$album_id = $this->input->post('album_id');
|
||||
$playlistId = $this->input->post('playlist');
|
||||
$songs = $this->model_music->getSongOfAlbum($album_id);
|
||||
foreach ($songs as $song) {
|
||||
$this->model_music->addSongToPlaylist($song->name, $playlistId);
|
||||
}
|
||||
redirect('playlist');
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user