2024-05-28 14:36:30 +02:00
|
|
|
<?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();
|
2024-05-30 10:05:37 +02:00
|
|
|
$this->load->view('layout/header_chanson');
|
2024-05-28 14:36:30 +02:00
|
|
|
$this->load->view('albums_list',['albums'=>$albums]);
|
2024-05-30 10:05:37 +02:00
|
|
|
$this->load->view('layout/footer_chanson');
|
2024-05-28 14:36:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|