".get_lang('system_uptime')."

".get_lang('system_up_time').": " . @$indexuptime . "
".get_lang('system_up_since').": " . @$indexuptimesince . "
"; } if (extension_loaded('gd')) { if ($modulecpu == "1" and $nocpushow != "1") { echo "

".get_lang('cpu_usage')."

"; ksort($cores); foreach($cores as $cpu => $percent) { echo "CPU" . $cpu . " ".get_lang('cpu_load').": " . $percent . " %
"; drawBarDiv($percent, "CPU" . $cpu); } echo '
'; } if ($modulememory == "1") { echo "

".get_lang('ram_usage')."

".get_lang('ram_used').": " . $ramusage . "
"; drawBarDiv($rampercent, "RAM"); echo "
"; } if ($modulestorage == "1") { echo "

".get_lang('storage_space')."

".get_lang('storage_total').": " . $diskspace . "
".get_lang('storage_used').": " . $diskinuse . "
"; drawBarDiv($hddbarusage, "HDD"); echo get_lang('storage_free').": " . $hddfreespace . "
"; } } else { echo "

".get_lang('status_extension_required')."

".get_lang('gd_info')."
"; } if($modulesystemtasks == "1"){ echo "

".get_lang('process_monitor')."

"; if(isset($taskoutput) && is_array($taskoutput) && isset($taskoutput["task"]) && !empty($taskoutput["task"])){ echo "
" . htmlentities($taskoutput["task"]) . "
"; } echo '
'; } } ?>