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

20 lines
615 B
PHP
Raw Normal View History

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();
$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]);
$this->load->view('layout/footer');
2024-05-28 11:34:30 +02:00
}
2024-06-05 11:14:54 +02:00
}