Correzione messaggio su spazio occupato
This commit is contained in:
parent
be91e1040a
commit
6deca4bd9b
|
@ -43,13 +43,14 @@ class SpaceHook extends CachedManager
|
|||
$osm_size = $this->getCache()->content;
|
||||
|
||||
$soft_quota = (float) setting('Soft quota'); // Impostazione in GB
|
||||
$space_limit = ($soft_quota / 100) * 95; // 95% dello spazio indicato
|
||||
$space_limit = $space_limit * (1024 ** 3); // Trasformazione in GB
|
||||
$soft_quota = $soft_quota * (1024 ** 3); // Trasformazione in GB
|
||||
|
||||
$message = tr('Attenzione: occupati _TOT_ dei _QUOTA_ previsti', [
|
||||
'_TOT_' => FileSystem::formatBytes($osm_size),
|
||||
'_QUOTA_' => FileSystem::formatBytes($space_limit),
|
||||
'_QUOTA_' => FileSystem::formatBytes($soft_quota),
|
||||
]);
|
||||
|
||||
$space_limit = ($soft_quota / 100) * 95; // 95% dello spazio indicato
|
||||
|
||||
return [
|
||||
'icon' => 'fa fa-database text-warning',
|
||||
|
|
Loading…
Reference in New Issue