Update siteinfo.php
This commit is contained in:
parent
ec1d6d537e
commit
e58ad35fb0
@ -150,6 +150,9 @@ function siteinfo_content(&$a) {
|
|||||||
if(file_exists('doc/site_donate.html'))
|
if(file_exists('doc/site_donate.html'))
|
||||||
$donate .= file_get_contents('doc/site_donate.html');
|
$donate .= file_get_contents('doc/site_donate.html');
|
||||||
|
|
||||||
|
if(function_exists('sys_getloadavg'))
|
||||||
|
$loadavg = sys_getloadavg();
|
||||||
|
|
||||||
$o = replace_macros(get_markup_template('siteinfo.tpl'), array(
|
$o = replace_macros(get_markup_template('siteinfo.tpl'), array(
|
||||||
'$title' => t('$Projectname'),
|
'$title' => t('$Projectname'),
|
||||||
'$description' => t('This is a hub of $Projectname - a global cooperative network of decentralized privacy enhanced websites.'),
|
'$description' => t('This is a hub of $Projectname - a global cooperative network of decentralized privacy enhanced websites.'),
|
||||||
@ -158,6 +161,8 @@ function siteinfo_content(&$a) {
|
|||||||
'$tag' => $tag,
|
'$tag' => $tag,
|
||||||
'$polled' => t('Last background fetch: '),
|
'$polled' => t('Last background fetch: '),
|
||||||
'$lastpoll' => get_poller_runtime(),
|
'$lastpoll' => get_poller_runtime(),
|
||||||
|
'$load_average' => t('Current load average: '),
|
||||||
|
'$loadavg_all' => $loadavg[0] . ', ' . $loadavg[1] . ', ' . $loadavg[2],
|
||||||
'$commit' => $commit,
|
'$commit' => $commit,
|
||||||
'$web_location' => t('Running at web location') . ' ' . z_root(),
|
'$web_location' => t('Running at web location') . ' ' . z_root(),
|
||||||
'$visit' => t('Please visit <a href="https://redmatrix.me">redmatrix.me</a> to learn more about $Projectname.'),
|
'$visit' => t('Please visit <a href="https://redmatrix.me">redmatrix.me</a> to learn more about $Projectname.'),
|
||||||
|
Reference in New Issue
Block a user