2026-06-03 17:33:56 +02:00
|
|
|
<?php
|
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
|
|
class Genre 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_genre($id);
|
|
|
|
|
|
2026-06-10 22:01:21 +02:00
|
|
|
$this->load->view('genre_games_list_view', $data);
|
2026-06-03 17:33:56 +02:00
|
|
|
}
|
|
|
|
|
}
|