<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Albums extends CI_Controller {

    private $filter = 'default';

	public function __construct(){
		parent::__construct();
		$this->load->model('model_music');
		$this->load->helper('html');
		$this->load->helper('url');
		$this->load->helper('form');
	}
	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');
	}

	public function view($id){
        $tracks = $this->model_music->getTracksByAlbumId($id);
        $this->load->view('layout/header');
        $this->load->view('album_info', ['tracks' => $tracks]);
        $this->load->view('layout/footer');
    }
}