model = new AnimeModel(); $this->collection_model = new AnimeCollectionModel(); } public function index() { $this->anime_list('currently-watching'); } public function all() { $data = $this->model->get_all_lists(); $this->outputHTML('anime_list', [ 'title' => "Tim's Anime List · All", 'sections' => $data ]); } public function anime_list($type, $title="Tim's Anime List") { $data = $this->model->get_list($type); $this->outputHTML('anime_list', [ 'title' => $title, 'sections' => $data ]); } public function collection() { $data = $this->collection_model->get_collection(); $this->outputHTML('anime_collection', [ 'title' => "Tim's Anime Collection", 'sections' => $data ]); } } // End of AnimeController.php