아이콘, 게임 이미지 경로를 일괄 지정 가능하도록 변경

This commit is contained in:
2018-04-08 16:56:26 +09:00
parent fe53fb9359
commit bc7efae08c
31 changed files with 515 additions and 346 deletions
+11
View File
@@ -5,6 +5,9 @@ class AppConf
{
private static $serverList = null;
/** @var string 전용 아이콘 경로 */
public static $userIconPath = 'd_pic';
/**
* 서버 설정 반환
*
@@ -55,4 +58,12 @@ class AppConf
}
return DB::db();
}
public static function getUserIconPathFS() : string{
return ROOT.'/'.static::$userIconPath;
}
public static function getUserIconPathWeb() : string{
return ServConfig::$serverWebPath.'/'.static::$userIconPath;
}
}