Пример #1
0
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
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);
}