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
|
|
|
|
// options to an empty string. To route by host, set the _path suffixed options
|
|
|
|
// to an empty string
|
|
|
|
// ----------------------------------------------------------------------------
|
2015-06-16 11:21:22 -04:00
|
|
|
|
2015-06-11 16:44:52 -04:00
|
|
|
'anime_host' => 'anime.timshomepage.net',
|
|
|
|
'manga_host' => 'manga.timshomepage.net',
|
|
|
|
'anime_path' => '',
|
|
|
|
'manga_path' => '',
|
|
|
|
|
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
|
|
|
];
|