2015-09-14 15:49:20 -04:00
|
|
|
<?php
|
2015-11-16 11:40:01 -05:00
|
|
|
/**
|
|
|
|
* Hummingbird Anime Client
|
|
|
|
*
|
|
|
|
* An API client for Hummingbird to manage anime and manga watch lists
|
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2015
|
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
|
|
|
* @license MIT
|
|
|
|
*/
|
2015-09-14 15:49:20 -04:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Routing
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
return [
|
2015-10-05 16:54:25 -04:00
|
|
|
// Subfolder prefix for url, if in a subdirectory of the web root
|
2015-09-14 15:49:20 -04:00
|
|
|
'subfolder_prefix' => '',
|
|
|
|
|
|
|
|
// Path to public directory, where images/css/javascript are located,
|
|
|
|
// appended to the url
|
|
|
|
'asset_path' => '/public',
|
|
|
|
|
|
|
|
// Which list should be the default?
|
|
|
|
'default_list' => 'anime', // anime or manga
|
|
|
|
|
|
|
|
// Default pages for anime/manga
|
2015-10-05 16:54:25 -04:00
|
|
|
'default_anime_list_path' => "watching", // watching|plan_to_watch|on_hold|dropped|completed|all
|
|
|
|
'default_manga_list_path' => "all", // reading|plan_to_read|on_hold|dropped|completed|all
|
2015-09-14 15:49:20 -04:00
|
|
|
|
2015-10-05 16:54:25 -04:00
|
|
|
// Default view type (cover_view/list_view)
|
|
|
|
'default_view_type' => 'cover_view',
|
2015-09-14 15:49:20 -04:00
|
|
|
];
|