SAEWEB2.2/ci/application/controllers/Chansons.php

25 lines
740 B
PHP
Raw Normal View History

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
}
2024-06-05 11:14:54 +02:00
public function view($AlbumsOfArtistId){
$AlbumsOfArtists = $this->model_music->getAlbumsOfArtist($AlbumsOfArtistId);
$this->load->view('layout/header');
$this->load->view('albums_artist_list',['AlbumsOfArtists'=>$AlbumsOfArtists]);
$this->load->view('layout/footer');
}
2024-05-28 14:36:30 +02:00
}