I just want to put up a message saying that we're closing for maintenance, then turn it off after maintenance.
The plugin is simply:
HTML Code:
ob_start();
echo "<center><font color=\"yellow\"><font size=\"+1\"><b>This is a test of the maintenance system message.</b></font></center>";
$closemessage = ob_get_contents();
ob_end_clean();
The $closemessage is placed in the template... then ideally I just want to turn that plugin on and off at the designated times.