2024-05-21 15:05:29 +02:00
|
|
|
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class Albums extends CI_Controller {
|
|
|
|
|
2024-05-30 10:05:37 +02:00
|
|
|
public function __construct(){
|
|
|
|
parent::__construct();
|
|
|
|
$this->load->model('model_music');
|
|
|
|
}
|
2024-05-28 11:55:36 +02:00
|
|
|
|
2024-05-30 10:05:37 +02:00
|
|
|
public function index(){
|
|
|
|
$albums = $this->model_music->getAlbums();
|
2024-06-04 15:00:24 +02:00
|
|
|
$this->load->view('layout/header');
|
2024-05-30 10:05:37 +02:00
|
|
|
$this->load->view('albums_list', ['albums' => $albums]);
|
2024-06-04 15:00:24 +02:00
|
|
|
$this->load->view('layout/footer');
|
2024-05-30 10:05:37 +02:00
|
|
|
}
|
2024-05-21 15:05:29 +02:00
|
|
|
|
2024-05-30 10:05:37 +02:00
|
|
|
public function view($album_id){
|
2024-05-30 10:33:06 +02:00
|
|
|
$songs = $this->model_music->getSongOfAlbum($album_id);
|
2024-05-30 10:05:37 +02:00
|
|
|
if (empty($songs)) {
|
2024-05-30 16:14:38 +02:00
|
|
|
$songs = [];
|
2024-05-30 10:05:37 +02:00
|
|
|
}
|
2024-06-04 15:00:24 +02:00
|
|
|
$this->load->view('layout/header');
|
2024-06-05 14:57:43 +02:00
|
|
|
$this->load->view('song_album_list', ['songs' => $songs]);
|
2024-06-04 15:00:24 +02:00
|
|
|
$this->load->view('layout/footer');
|
2024-05-30 10:05:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|