$filename) { if ($filename != '..' && $filename != '.' && $filename != 'index.php') { if (is_dir($dir.'/'.$filename)) { $new_foldersize = foldersize($dir.'/'.$filename); $count_size = $count_size + $new_foldersize; } elseif (is_file($dir.'/'.$filename)) { $count_size = $count_size + filesize($dir.'/'.$filename); $count++; } } } return $count_size; } // size converter function sizeFormat($bytes) { $kb = 1024; $mb = $kb * 1024; $gb = $mb * 1024; $tb = $gb * 1024; if (($bytes >= 0) && ($bytes < $kb)) { return $bytes.' B'; } elseif (($bytes >= $kb) && ($bytes < $mb)) { return ceil($bytes / $kb).' KB'; } elseif (($bytes >= $mb) && ($bytes < $gb)) { return ceil($bytes / $mb).' MB'; } elseif (($bytes >= $gb) && ($bytes < $tb)) { return ceil($bytes / $gb).' GB'; } elseif ($bytes >= $tb) { return ceil($bytes / $tb).' TB'; } else { return $bytes.' B'; } } // get size of folders in a folder $plugin_count = count(glob('../../plugins/*', GLOB_ONLYDIR)); // Update checker $PATCH_URL = 'https://raw.githubusercontent.com/Supernova3339/anonfiles/main/'; $version_filename = 'latest.txt?token=GHSAT0AAAAAAB4S7HM4SZGF7VWPABQO3KRSY5FDV4Q'; // REMOVE TOKEN // Get version $ch = curl_init($PATCH_URL.$version_filename); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $str = curl_exec($ch); curl_close($ch); $server_version = str_to_version_info($str); ?> =template_admin_header('Dashboard', 'dashboard')?>
=version?>
version) { echo 'update available
'; } echo $server_version; ?>