2015-09-14 15:49:20 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// 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
|
|
|
];
|