2017-03-28 22:50:00 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse;
|
|
|
|
|
|
|
|
class Data {
|
2017-07-14 14:16:16 +00:00
|
|
|
/**
|
|
|
|
* @var Lang
|
|
|
|
*/
|
2017-07-12 00:27:37 +00:00
|
|
|
public static $lang;
|
2017-07-14 14:16:16 +00:00
|
|
|
/**
|
|
|
|
* @var Conf
|
|
|
|
*/
|
2017-03-28 22:50:00 +00:00
|
|
|
public static $conf;
|
2017-07-14 14:16:16 +00:00
|
|
|
/**
|
|
|
|
* @var Database
|
|
|
|
*/
|
2017-03-28 22:50:00 +00:00
|
|
|
public static $db;
|
2017-07-14 14:16:16 +00:00
|
|
|
/**
|
|
|
|
* @var User
|
|
|
|
*/
|
2017-03-28 22:50:00 +00:00
|
|
|
public static $user;
|
|
|
|
|
|
|
|
static function load(Conf $conf) {
|
2017-07-12 00:27:37 +00:00
|
|
|
static::$lang = new Lang();
|
2017-03-28 22:50:00 +00:00
|
|
|
static::$conf = $conf;
|
2017-07-12 00:27:37 +00:00
|
|
|
static::$lang->set($conf->lang);
|
2017-03-28 22:50:00 +00:00
|
|
|
static::$db = new Database();
|
|
|
|
static::$user = new User();
|
|
|
|
}
|
|
|
|
}
|