ROOT: ".ROOT."
BASE: ".BASE."
";
$base = new CoreLibs\Admin\Backend(DB_CONFIG);
ob_end_flush();
if ($base->getConnectionStatus()) {
die("Cannot connect to database");
}
print "Start time: ".$base->runningTime()."
";
print "HumanReadableByteFormat: ".$base->HumanReadableByteFormat(1234567.12)."
";
print "humanReadableByteFormat: ".$base->humanReadableByteFormat(1234567.12)."
";
// print "get_page_name [DEPRECATED]: ".$base->get_page_name()."
";
print "getPageName: ".$base->getPageName()."
";
print "DB Info: ".$base->dbInfo(true)."
";
print "End Time: ".$base->runningTime()."
";
print "Start Time: ".$base->runningTime()."
";
print "Lang: ".$base->l->__getLang().", MO File: ".$base->l->__getMoFile()."
";
print "Translate test: Year -> ".$base->l->__('Year')."
";
print "End Time: ".$base->runningTime()."
";
// end error print
print $base->printErrorMsg();
# __END__