<?php
// +--------------------------------------------+
// | Twiggi web-based groupware. |
// | |
// | For copyright and license information |
// | please read the COPYRIGHT file. |
// +--------------------------------------------+
// Message types
define('ERROR', 0);
define('WARNING', 1);
function core_print($file,$line,$message_type,$message)
{
// TODO: database storage
switch ($message_type)
{
case ERROR:
print "<font color='red'>TWIGGI ERROR: ".$file." (".$line.") ".$message."</font><br>";
break;
case WARNING:
print "<font color='orange'>TWIGGI WARNING: ".$file." (".$line.") ".$message."</font><br>";
break;
default:
break;
}
}
?>