Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
9dd1769633
|
@ -18,6 +18,7 @@
|
|||
*/
|
||||
|
||||
use Util\FileSystem;
|
||||
use Models\Cache;
|
||||
|
||||
include_once __DIR__.'/../core.php';
|
||||
|
||||
|
@ -574,10 +575,11 @@ if (!Auth::check() && (!empty($messages['info']) || !empty($messages['warning'])
|
|||
}
|
||||
|
||||
//Se la mia installazione supera una data dimensione visualizzo un messaggio
|
||||
$osm_size = $dbo->fetchOne('SELECT content FROM zz_cache WHERE name = "Spazio utilizzato"')['content'];
|
||||
$osm_size = Cache::pool('Spazio utilizzato')->content;
|
||||
|
||||
if (!empty(setting('Soft quota')) && !empty($osm_size)){
|
||||
|
||||
// Controllo sullo spazio disponibile
|
||||
// Controllo lo spazio disponibile
|
||||
//$osm_size = disk_free_space('.');
|
||||
//$osm_size = FileSystem::folderSize(base_dir(), ['htaccess']);
|
||||
|
||||
|
|
|
@ -21,7 +21,6 @@ namespace Modules\StatoServizi;
|
|||
|
||||
use Util\FileSystem;
|
||||
use Hooks\CachedManager;
|
||||
use Modules;
|
||||
|
||||
|
||||
/**
|
||||
|
@ -44,7 +43,6 @@ class SpaceHook extends CachedManager
|
|||
{
|
||||
$osm_size = $this->getCache()->content;
|
||||
|
||||
$osm_size = FileSystem::folderSize(base_dir(), ['htaccess']);
|
||||
$soft_quota = setting('Soft quota'); //MB
|
||||
$space_limit = ($soft_quota / 100)*95; //MB
|
||||
|
||||
|
@ -57,15 +55,14 @@ class SpaceHook extends CachedManager
|
|||
return [
|
||||
'icon' => 'fa fa-database text-warning',
|
||||
'message' => $message,
|
||||
'show' => ($osm_size > $space_limit),
|
||||
'show' => ($osm_size > ($space_limit * 1048576)),
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Controlla se è disponibile un aggiornamento nella repository GitHub.
|
||||
*
|
||||
* @return string|bool
|
||||
* @return int|bool
|
||||
*/
|
||||
public static function isAvailable()
|
||||
{
|
||||
|
@ -74,12 +71,8 @@ class SpaceHook extends CachedManager
|
|||
|
||||
$osm_size = FileSystem::folderSize(base_dir(), ['htaccess']);
|
||||
|
||||
$soft_quota = setting('Soft quota'); //MB
|
||||
$space_limit = ($soft_quota / 100)*95; //MB
|
||||
|
||||
if ($osm_size > ($space_limit * 1048576)) {
|
||||
return $osm_size;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue