get('config'); $this->model = new MangaModel($container); $this->base_data = array_merge($this->base_data, [ 'menu_name' => 'manga_list', 'config' => $this->config, 'url_type' => 'manga', 'other_type' => 'anime' ]); } /** * Get a section of the manga list * * @param string $status * @param string $view * @return void */ public function index($status = "all", $view = "") { return $this->manga_list($status, $view); } /** * Update an anime item * * @return boolean|null */ public function update() { $this->outputJSON($this->model->update($this->request->post->get())); } /** * Get a section of the manga list * * @param string $status * @param string $view * @return void */ protected function manga_list($status, $view) { $map = [ 'all' => 'All', 'plan_to_read' => MangaModel::PLAN_TO_READ, 'reading' => MangaModel::READING, 'completed' => MangaModel::COMPLETED, 'dropped' => MangaModel::DROPPED, 'on_hold' => MangaModel::ON_HOLD ]; $title = $this->config->get('whose_list') . "'s Manga List · {$map[$status]}"; $view_map = [ '' => 'cover', 'list' => 'list' ]; $data = ($status !== 'all') ? [$map[$status] => $this->model->get_list($map[$status])] : $this->model->get_all_lists(); $this->outputHTML('manga/' . $view_map[$view], [ 'title' => $title, 'sections' => $data, ]); } } // End of MangaController.php