2018-08-24 14:36:58 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Hummingbird Anime List Client
|
|
|
|
*
|
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
|
|
|
*
|
2019-12-03 15:17:25 -05:00
|
|
|
* PHP version 7.2
|
2018-08-24 14:36:58 -04:00
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
|
|
* @copyright 2015 - 2018 Timothy J. Warren
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2018-10-01 11:35:51 -04:00
|
|
|
* @version 4.1
|
2018-08-24 14:36:58 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Types;
|
|
|
|
|
|
|
|
class Config extends AbstractType {
|
|
|
|
// Config files/namespaces
|
|
|
|
public $anilist;
|
|
|
|
public $cache;
|
|
|
|
public $database;
|
|
|
|
|
|
|
|
// Settings in config.toml
|
2018-10-05 14:32:05 -04:00
|
|
|
public $asset_path; // Path to public folder for urls
|
2019-07-12 15:56:24 -04:00
|
|
|
public $dark_theme; /* Deprecated */
|
2018-10-05 14:32:05 -04:00
|
|
|
public $default_anime_list_path;
|
|
|
|
public $default_list;
|
|
|
|
public $default_manga_list_path;
|
|
|
|
public $default_view_type;
|
2018-08-24 14:36:58 -04:00
|
|
|
public $kitsu_username;
|
2018-10-11 09:53:14 -04:00
|
|
|
public $secure_urls = TRUE;
|
2018-08-24 14:36:58 -04:00
|
|
|
public $show_anime_collection;
|
|
|
|
public $show_manga_collection;
|
2019-07-12 15:56:24 -04:00
|
|
|
public $theme;
|
2018-08-24 14:36:58 -04:00
|
|
|
public $whose_list;
|
|
|
|
|
|
|
|
// Application config
|
|
|
|
public $menus;
|
|
|
|
public $routes;
|
|
|
|
|
|
|
|
// Generated config values
|
2018-10-05 14:32:05 -04:00
|
|
|
public $asset_dir; // Path to public folder for local files
|
2018-08-24 14:36:58 -04:00
|
|
|
public $base_config_dir;
|
|
|
|
public $config_dir;
|
|
|
|
public $data_cache_path;
|
|
|
|
public $img_cache_path;
|
|
|
|
public $view_path;
|
|
|
|
|
|
|
|
public function setAnilist ($data): void
|
|
|
|
{
|
2018-10-05 14:32:05 -04:00
|
|
|
$this->anilist = new Config\Anilist($data);
|
2018-08-24 14:36:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setCache ($data): void
|
|
|
|
{
|
2018-10-05 14:32:05 -04:00
|
|
|
$this->cache = new Config\Cache($data);
|
2018-08-24 14:36:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setDatabase ($data): void
|
|
|
|
{
|
2018-10-05 14:32:05 -04:00
|
|
|
$this->database = new Config\Database($data);
|
2018-08-24 14:36:58 -04:00
|
|
|
}
|
|
|
|
}
|