DBConnection::showSystemInformations PHP Method

showSystemInformations() public method

public showSystemInformations ( $width )
$width
    function showSystemInformations($width)
    {
        // No need to translate, this part always display in english (for copy/paste to forum)
        echo "<tr class='tab_bg_2'><th>" . self::getTypeName(Session::getPluralNumber()) . "</th></tr>";
        echo "<tr class='tab_bg_1'><td><pre>\n&nbsp;\n";
        if (self::isDBSlaveActive()) {
            echo "Active\n";
            self::showAllReplicateDelay();
        } else {
            echo "Not active\n";
        }
        echo "\n</pre></td></tr>";
    }