2024-05-23 11:41:06 +02:00
|
|
|
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class artistes extends CI_Controller {
|
|
|
|
|
|
|
|
public function __construct(){
|
|
|
|
parent::__construct();
|
|
|
|
$this->load->model('model_music');
|
|
|
|
}
|
|
|
|
public function index(){
|
|
|
|
$artistes = $this->model_music->getArtists();
|
2024-06-06 10:47:55 +02:00
|
|
|
$playlists = $this->model_music->getPlaylist();
|
2024-06-04 15:00:24 +02:00
|
|
|
$this->load->view('layout/header');
|
2024-06-06 10:47:55 +02:00
|
|
|
$this->load->view('artistes_list',['artistes'=>$artistes, 'playlists' => $playlists]);
|
2024-06-04 15:00:24 +02:00
|
|
|
$this->load->view('layout/footer');
|
2024-05-28 11:34:30 +02:00
|
|
|
}
|
2024-05-23 11:41:06 +02:00
|
|
|
|
2024-05-30 10:33:06 +02:00
|
|
|
public function view($AlbumsOfArtistId){
|
2024-06-10 16:12:11 +02:00
|
|
|
$artistes = $this->model_music->getArtists();
|
2024-06-04 15:00:24 +02:00
|
|
|
$AlbumsOfArtists = $this->model_music->getAlbumsOfArtist($AlbumsOfArtistId);
|
2024-06-05 21:18:00 +02:00
|
|
|
$playlists = $this->model_music->getPlaylist();
|
2024-06-04 15:00:24 +02:00
|
|
|
$this->load->view('layout/header');
|
2024-06-10 16:12:11 +02:00
|
|
|
$this->load->view('albums_artist_list', ['AlbumsOfArtists' => $AlbumsOfArtists, 'playlists' => $playlists, 'artist_id' => $AlbumsOfArtistId, 'artistes' => $artistes]);
|
2024-06-04 15:00:24 +02:00
|
|
|
$this->load->view('layout/footer');
|
2024-05-30 10:33:06 +02:00
|
|
|
}
|
|
|
|
|
2024-06-05 21:18:00 +02:00
|
|
|
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');
|
|
|
|
}
|
|
|
|
|
2024-06-06 10:47:55 +02:00
|
|
|
public function addSongOfArtistToPlaylist(){
|
|
|
|
$playlistId = $this->input->post('playlist');
|
|
|
|
$artistId = $this->input->post('artistId');
|
|
|
|
$this->model_music->addAllSongsOfArtistInPlaylist($artistId, $playlistId);
|
|
|
|
redirect('artistes');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|