<?php
class SecureLabDeveloper {
public function __construct() {
return true;
}
public function FormirateErrorReport( $Message ) {
}
public function TestSystem() {
global $_SecureLabMainClass;
$HTML["Stylesheet"] = "<style type=\"text/css\">.sl_green { font: 15px Georgia; color: green; } .sl_red { font: 15px Georgia; color: red; }</style>";
echo $HTML["Stylesheet"];
echo ( $_SecureLabMainClass->Configuration ? "<span class=\"sl_green\">SecureLab Configuration is loaded successfully.</span><br />" :"<span class=\"sl_red\">SecureLab Configuration is not loaded.</span><br />" );
echo ( $_SecureLabMainClass->AddonsManager ? "<span class=\"sl_green\">SecureLab Addons Manager is loaded successfully.</span><br />" :"<span class=\"sl_red\">SecureLab Addons Manager is not loaded.</span><br />" );
}
}
?>