This commit is contained in:
Kevin Adametz 2024-08-05 12:05:24 +02:00
parent 04d677d37a
commit bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions

View file

@ -270,12 +270,28 @@ class Util
return \Config::get('app.url') === config('app.domain').config('app.tld_shop');
}
public static function isTestSystem(){
public static function isTestSystem($dev = false){
if(\Config::get('app.tld_care') === '.test' || \Config::get('app.tld_shop') === '.lshop'){
if($dev && config('app.debug') !== true){
return false;
}
return true;
}
return false;
}
public static function formatBytes($size, $precision = 2)
{
if ($size > 0) {
$size = (int) $size;
$base = log($size) / log(1024);
$suffixes = array(' bytes', ' KB', ' MB', ' GB', ' TB');
return round(pow(1024, $base - floor($base)), $precision) . $suffixes[floor($base)];
} else {
return $size;
}
}
public static function sanitize($string, $force_lowercase = true, $anal = false, $substr = false)
{