Upload code

This commit is contained in:
Igor Barkov (iwork)
2021-02-11 15:55:56 +02:00
parent df4832b57f
commit d0b334a426
11278 changed files with 593050 additions and 0 deletions

13
admin/functions.php Normal file
View File

@@ -0,0 +1,13 @@
<?
defined('AntiBK') or die('Доступ запрещен!');
function formatfilesize ($data)
{
// bytes
if ($data < 1024) return $data.' bytes';
// kilobytes
else if ($data < 1024000) return round(($data / 1024), 1).' kb';
// megabytes
else return round(($data / 1024000), 1).' mb';
}
?>