ajout connexion,ajout playlist, ajout chanson dans playlist, ajout filtre et tri pour chanson et album
This commit is contained in:
@@ -6,23 +6,35 @@ class Albums extends CI_Controller {
|
||||
public function __construct(){
|
||||
parent::__construct();
|
||||
$this->load->model('model_music');
|
||||
$this->load->helper('html');
|
||||
$this->load->helper('url');
|
||||
}
|
||||
public function index(){
|
||||
$genre = $this->input->get('genre');
|
||||
$artist = $this->input->get('artist');
|
||||
$year = $this->input->get('year');
|
||||
$sort = $this->input->get('sort');
|
||||
$order = $this->input->get('order');
|
||||
|
||||
if ($recherche=filter_input(INPUT_GET,'recherche') == false or $recherche=filter_input(INPUT_GET,'recherche') == null){
|
||||
$albums = $this->model_music->getAlbums();
|
||||
$albums = $this->model_music->get_filtered_albums($genre, $artist, $year, $sort, $order);
|
||||
$data['albums'] = $albums;
|
||||
}else{
|
||||
$recherche=filter_input(INPUT_GET,'recherche');
|
||||
$albums = $this->model_music->getSearchAlbums($recherche);
|
||||
$data['albums'] = $albums;
|
||||
}
|
||||
$this->load->view('layout/header');
|
||||
if ($albums == false){
|
||||
//$page = preg_split('/[\/]/',$_SERVER['HTTP_REFERER']);
|
||||
//$this->load->view('error',['page'=>$page[count($page)-1]]);
|
||||
$albums = $this->model_music->getAlbums();
|
||||
$page = preg_split('/[\/]/',$_SERVER['REQUEST_URI']);
|
||||
$this->load->view('error',['page'=>$page[count($page)-1]]);
|
||||
$albums = $this->model_music->get_filtered_albums($genre, $artist, $year, $sort, $order);
|
||||
$data['albums'] = $albums;
|
||||
}
|
||||
$this->load->view('albums_list',['albums'=>$albums]);
|
||||
|
||||
$data['genres'] = $this->model_music->get_all_genres();
|
||||
$data['artists'] = $this->model_music->get_all_artists();
|
||||
$data['years'] = $this->model_music->get_all_years();
|
||||
|
||||
$this->load->view('albums_list',$data);
|
||||
$this->load->view('layout/footer');
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user