32 lines
1.0 KiB
PHP
32 lines
1.0 KiB
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Albums extends CI_Controller {
|
|
|
|
public function __construct(){
|
|
parent::__construct();
|
|
$this->load->model('model_music');
|
|
}
|
|
|
|
public function index(){
|
|
$albums = $this->model_music->getAlbums();
|
|
$this->load->view('layout/header_album');
|
|
$this->load->view('albums_list', ['albums' => $albums]);
|
|
$this->load->view('layout/footer_album');
|
|
}
|
|
|
|
public function view($album_id){
|
|
$songs = $this->model_music->getSongOfAlbum($album_id);
|
|
if (empty($songs)) {
|
|
$songs = []; // Assurez-vous que $songs est un tableau vide si aucune chanson n'est trouvée
|
|
}
|
|
// Debugging: Log the $songs variable to see its content
|
|
log_message('debug', 'Songs: ' . print_r($songs, true));
|
|
|
|
$this->load->view('layout/header_album');
|
|
$this->load->view('song_album_list', ['songs' => $songs]);
|
|
$this->load->view('layout/footer_album');
|
|
}
|
|
}
|
|
?>
|