2015-06-09 18:18:53 -04:00
|
|
|
<?php
|
2015-06-26 12:03:42 -04:00
|
|
|
$config = [
|
2015-06-16 11:21:22 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Username for anime and manga lists
|
|
|
|
// ----------------------------------------------------------------------------
|
2015-06-09 18:18:53 -04:00
|
|
|
'hummingbird_username' => 'timw4mail',
|
2015-06-11 16:44:52 -04:00
|
|
|
|
2015-06-16 11:21:22 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// General config
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// do you wish to show the anime collection tab?
|
2015-06-16 15:54:10 -04:00
|
|
|
'show_anime_collection' => TRUE,
|
2015-06-16 11:11:35 -04:00
|
|
|
|
2015-06-24 16:01:35 -04:00
|
|
|
// path to public directory
|
|
|
|
'asset_path' => '//' . $_SERVER['HTTP_HOST'] . '/public',
|
|
|
|
|
2015-06-26 12:03:42 -04:00
|
|
|
// path to public directory on the server
|
|
|
|
'asset_dir' => __DIR__ . '/../../public',
|
|
|
|
|
2015-06-11 16:44:52 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Routing
|
|
|
|
//
|
|
|
|
// Route by path, or route by domain. To route by path, set the _host suffixed
|
2015-06-30 13:03:20 -04:00
|
|
|
// options to an empty string, and set 'route_by' to 'path'. To route by host, set
|
|
|
|
// the _path suffixed options to an empty string, and set 'route_by' to 'host'.
|
2015-06-11 16:44:52 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
2015-06-16 11:21:22 -04:00
|
|
|
|
2015-06-30 13:03:20 -04:00
|
|
|
'route_by' => 'host', // host or path
|
2015-06-11 16:44:52 -04:00
|
|
|
'anime_host' => 'anime.timshomepage.net',
|
|
|
|
'manga_host' => 'manga.timshomepage.net',
|
|
|
|
'anime_path' => '',
|
|
|
|
'manga_path' => '',
|
|
|
|
|
2015-07-02 14:04:04 -04:00
|
|
|
// Which list should be the default?
|
|
|
|
'default_list' => 'anime', // anime or manga
|
|
|
|
|
2015-06-16 11:11:35 -04:00
|
|
|
// Default pages for anime/manga
|
|
|
|
'default_anime_path' => '/watching',
|
|
|
|
'default_manga_path' => '/all',
|
|
|
|
|
|
|
|
// Default to list view?
|
|
|
|
'default_to_list_view' => FALSE,
|
2015-06-09 18:18:53 -04:00
|
|
|
];
|