19 lines
		
	
	
		
			416 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			416 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
defined('BASEPATH') OR exit('No direct script access allowed');
 | 
						|
 | 
						|
class Albums extends CI_Controller {
 | 
						|
 | 
						|
	public function __construct(){
 | 
						|
		parent::__construct();
 | 
						|
		$this->load->model('model_music');
 | 
						|
	}
 | 
						|
	public function index(){
 | 
						|
		$albums = $this->model_music->getAlbums();
 | 
						|
		$this->load->view('layout/header');
 | 
						|
		$this->load->view('albums_list',['albums'=>$albums]);
 | 
						|
		$this->load->view('layout/footer');
 | 
						|
	}
 | 
						|
 | 
						|
}
 | 
						|
 |