HummingBirdAnimeClient/app/controllers/AnimeController.php

121 lines
2.3 KiB
PHP
Raw Normal View History

2015-05-22 12:36:26 -04:00
<?php
/**
* Anime Controller
*/
2015-05-22 12:36:26 -04:00
2015-06-26 16:39:10 -04:00
namespace AnimeClient;
/**
* Controller for Anime-related pages
*/
2015-05-22 12:36:26 -04:00
class AnimeController extends BaseController {
/**
* The anime list model
* @var object $model
*/
protected $model;
/**
* The anime collection model
* @var object $collection_model
*/
private $collection_model;
2015-05-22 12:36:26 -04:00
/**
* Data to ve sent to all routes in this controller
* @var array $base_data
*/
protected $base_data;
/**
* Route mapping for main navigation
* @var array $nav_routes
*/
private $nav_routes = [
'Watching' => '/watching{/view}',
'Plan to Watch' => '/plan_to_watch{/view}',
'On Hold' => '/on_hold{/view}',
'Dropped' => '/dropped{/view}',
'Completed' => '/completed{/view}',
'Collection' => '/collection{/view}',
'All' => '/all{/view}'
];
/**
* Constructor
*/
2015-06-29 09:46:49 -04:00
public function __construct(Config $config, Array $web)
2015-05-22 12:36:26 -04:00
{
2015-06-29 09:46:49 -04:00
parent::__construct($config, $web);
if ($this->config->show_anime_collection === FALSE)
{
unset($this->nav_routes['Collection']);
}
$this->model = new AnimeModel($config);
$this->collection_model = new AnimeCollectionModel($config);
$this->base_data = [
'message' => '',
'url_type' => 'anime',
'other_type' => 'manga',
'nav_routes' => $this->nav_routes,
];
2015-05-22 12:36:26 -04:00
}
/**
* Show a portion, or all of the anime list
*
* @param string $type - The section of the list
* @param string $title - The title of the page
* @return void
*/
public function anime_list($type, $title, $view)
2015-05-22 12:36:26 -04:00
{
$view_map = [
'' => 'cover',
'list' => 'list'
];
$data = ($type != 'all')
? $this->model->get_list($type)
: $this->model->get_all_lists();
2015-05-22 12:36:26 -04:00
$this->outputHTML('anime/' . $view_map[$view], [
2015-05-22 12:36:26 -04:00
'title' => $title,
'sections' => $data
]);
2015-05-22 12:36:26 -04:00
}
2015-05-27 09:03:42 -04:00
/**
* Show the anime collection page
*
* @return void
*/
public function collection($view)
{
$view_map = [
'' => 'collection',
'list' => 'collection_list'
];
2015-06-11 12:54:54 -04:00
$data = $this->collection_model->get_collection();
$this->outputHTML('anime/' . $view_map[$view], [
'title' => WHOSE . " Anime Collection",
2015-06-11 12:54:54 -04:00
'sections' => $data
]);
}
2015-06-17 08:50:01 -04:00
/**
* Update an anime item
2015-06-17 08:50:01 -04:00
*
* @return bool
2015-06-17 08:50:01 -04:00
*/
public function update()
2015-06-17 08:50:01 -04:00
{
print_r($this->model->update($this->request->post->get()));
2015-06-17 08:50:01 -04:00
}
2015-05-22 12:36:26 -04:00
}
// End of AnimeController.php