Move Guest Function formatBytes to root shared functions and use in files and files section in contact

This commit is contained in:
johnnyq
2026-07-16 20:25:18 -04:00
parent 113d6220bb
commit 9cc7e5ff3c
5 changed files with 21 additions and 21 deletions

View File

@@ -69,16 +69,3 @@ function getFileIcon($file_extension) {
return 'file';
}
}
/*
* Formats bytes into human readable file sizes
*/
function formatBytes($bytes, $precision = 2) {
$units = array('B', 'KB', 'MB', 'GB', 'TB');
for ($i = 0; $bytes > 1024 && $i < count($units) - 1; $i++) {
$bytes /= 1024;
}
return round($bytes, $precision) . ' ' . $units[$i];
}