lychee/php/Modules/Log.php

44 lines
950 B
PHP
Raw Normal View History

2014-05-06 19:22:56 +00:00
<?php
namespace Lychee\Modules;
2014-05-06 19:22:56 +00:00
final class Log {
2014-05-06 19:22:56 +00:00
public static function notice($function, $line, $text = '') {
return Log::text('notice', $function, $line, $text);
}
public static function warning($function, $line, $text = '') {
return Log::text('warning', $function, $line, $text);
}
public static function error($function, $line, $text = '') {
2014-05-06 19:22:56 +00:00
return Log::text('error', $function, $line, $text);
}
private static function text($type, $function, $line, $text = '') {
2014-05-06 19:22:56 +00:00
# Check dependencies
Validator::required(isset($type, $function, $line, $text), __METHOD__);
2014-05-06 19:22:56 +00:00
# Get time
$sysstamp = time();
# Save in database
$query = Database::prepare(Database::get(), "INSERT INTO ? (time, type, function, line, text) VALUES ('?', '?', '?', '?', '?')", array(LYCHEE_TABLE_LOG, $sysstamp, $type, $function, $line, $text));
$result = Database::get()->query($query);
2014-05-06 19:22:56 +00:00
if (!$result) return false;
return true;
2014-05-06 19:22:56 +00:00
}
}
?>