2024-05-28 11:34:30 +02:00
|
|
|
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class Song extends CI_Controller {
|
|
|
|
|
|
|
|
public function __construct(){
|
|
|
|
parent::__construct();
|
|
|
|
$this->load->model('model_music');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function view($album_id){
|
|
|
|
$songs = $this->model_music->getSongOfAlbum($album_id);
|
2024-06-11 15:08:29 +02:00
|
|
|
$duration = $this->model_music->getDurationSong($songs);
|
2024-06-05 19:36:03 +02:00
|
|
|
$playlists = $this->model_music->getPlaylist();
|
2024-06-04 15:00:24 +02:00
|
|
|
$this->load->view('layout/header');
|
2024-06-11 15:08:29 +02:00
|
|
|
$this->load->view('song_album_list', ['songs' => $songs, 'playlists' => $playlists, 'duration' => $duration]);
|
2024-06-04 15:00:24 +02:00
|
|
|
$this->load->view('layout/footer');
|
2024-05-28 11:34:30 +02:00
|
|
|
}
|
2024-06-05 11:14:54 +02:00
|
|
|
}
|