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

17 lines
457 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-05-30 10:05:37 +02:00
$this->load->view('layout/header_song');
2024-05-28 11:34:30 +02:00
$this->load->view('song_album_list',['songs'=>$songs]);
2024-05-30 10:05:37 +02:00
$this->load->view('layout/footer_song');
2024-05-28 11:34:30 +02:00
}
}