コード例 #1
0
ファイル: rrdcleaner.php プロジェクト: MrWnn/cacti
function rrdcleaner_legend($total_size)
{
    html_start_box('', '100%', '', '3', 'center', '');
    print '<tr>';
    print '<td><b>Total Size [mb]:</b> ' . round($total_size, 2) . '</td>';
    print '</tr><tr>';
    print '<td><b>Last Scan:</b> ' . rrdcleaner_lastupdate() . '</td>';
    print '</tr>';
    html_end_box(false);
}
コード例 #2
0
ファイル: rrdcleaner.php プロジェクト: resmon/resmon-cacti
function rrdcleaner_legend($total_size)
{
    global $colors;
    html_start_box("", "100%", $colors["header"], "3", "center", "");
    print "<tr>";
    print "<td><b>Total Size [mb]:</b> " . round($total_size, 2) . "</td>";
    print "</tr><tr>";
    print "<td><b>Last Scan:</b> " . rrdcleaner_lastupdate() . "</td>";
    print "</tr>";
    html_end_box(false);
}