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
|
2016-01-04 16:58:33 -05:00
|
|
|
* @copyright Copyright (c) 2015 - 2016
|
2015-11-16 11:40:01 -05:00
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
|
|
|
* @license MIT
|
|
|
|
*/
|
|
|
|
|
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-09-16 12:25:35 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Whose list is it?
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
'whose_list' => 'Tim',
|
|
|
|
|
2015-06-16 11:21:22 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// General config
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2015-10-05 16:54:25 -04:00
|
|
|
// do you wish to show the anime collection?
|
2015-06-16 15:54:10 -04:00
|
|
|
'show_anime_collection' => TRUE,
|
2015-06-16 11:11:35 -04:00
|
|
|
|
2015-10-05 16:54:25 -04:00
|
|
|
// do you wish to show the manga collection?
|
2015-12-08 14:52:59 -05:00
|
|
|
'show_manga_collection' => FALSE,
|
2015-10-05 16:54:25 -04:00
|
|
|
|
2015-06-26 12:03:42 -04:00
|
|
|
// path to public directory on the server
|
2015-09-14 15:49:20 -04:00
|
|
|
'asset_dir' => realpath(__DIR__ . '/../../public'),
|
2015-06-09 18:18:53 -04:00
|
|
|
];
|