2024-05-23 11:41:06 +02:00
|
|
|
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class artistes extends CI_Controller {
|
|
|
|
|
|
|
|
public function __construct(){
|
|
|
|
parent::__construct();
|
|
|
|
$this->load->model('model_music');
|
|
|
|
}
|
|
|
|
public function index(){
|
|
|
|
$artistes = $this->model_music->getArtists();
|
2024-05-30 10:05:37 +02:00
|
|
|
$this->load->view('layout/header_artistes');
|
2024-05-23 11:41:06 +02:00
|
|
|
$this->load->view('artistes_list',['artistes'=>$artistes]);
|
2024-05-30 10:05:37 +02:00
|
|
|
$this->load->view('layout/footer_artistes');
|
2024-05-28 11:34:30 +02:00
|
|
|
}
|
2024-05-23 11:41:06 +02:00
|
|
|
|
2024-05-30 10:33:06 +02:00
|
|
|
public function view($AlbumsOfArtistId){
|
|
|
|
$AlbumsOfArtist = $this->model_music->getAlbumsOfArtist($AlbumsOfArtistId);
|
|
|
|
$this->load->view('layout/header_artistes');
|
|
|
|
$this->load->view('albums_artist_list',['AlbumsOfArtist'=>$AlbumsOfArtist]);
|
|
|
|
$this->load->view('layout/footer');
|
|
|
|
}
|
|
|
|
|
2024-05-23 11:41:06 +02:00
|
|
|
}
|