ajout de la page de connection

This commit is contained in:
2024-06-09 04:13:50 +02:00
parent 6c0ca1905a
commit 6ff83097b2
4 changed files with 103 additions and 24 deletions

View File

@@ -3,18 +3,27 @@ defined('BASEPATH') OR exit('No direct script access allowed');
class Albums extends CI_Controller {
private $filter = 'default';
public function __construct(){
parent::__construct();
$this->load->model('model_music');
$this->load->helper('html');
$this->load->helper('url');
$this->load->helper('form');
$this->filter = $this->input->get('filter');
}
public function index(){
if ($this->filter == "co") {
$this->load->view('layout/header');
$this->load->view('new_user');
}else{
$albums = $this->model_music->getAlbums();
$this->load->view('layout/header');
$this->load->view('albums_list',['albums'=>$albums]);
$this->load->view('layout/footer');
}
}
}