17 lines
389 B
PHP
17 lines
389 B
PHP
|
|
<?php
|
||
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
|
|
||
|
|
class Category extends CI_Controller {
|
||
|
|
|
||
|
|
public function view($id = NULL) {
|
||
|
|
if ($id === NULL) {
|
||
|
|
redirect('home');
|
||
|
|
}
|
||
|
|
|
||
|
|
$this->load->model('Game_model');
|
||
|
|
|
||
|
|
$data['games'] = $this->Game_model->get_by_category($id);
|
||
|
|
|
||
|
|
$this->load->view('games_list_view', $data);
|
||
|
|
}
|
||
|
|
}
|