lychee/php/Modules/Log.php

47 lines
1.1 KiB
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
/**
* @return boolean Returns true when successful.
*/
public static function notice($connection, $function, $line, $text = '') {
return Log::text($connection, 'notice', $function, $line, $text);
}
/**
* @return boolean Returns true when successful.
*/
public static function error($connection, $function, $line, $text = '') {
2014-05-06 19:22:56 +00:00
return Log::text($connection, 'error', $function, $line, $text);
}
/**
* @return boolean Returns true when successful.
*/
private static function text($connection, $type, $function, $line, $text = '') {
// Check dependencies
Validator::required(isset($connection, $type, $function, $line, $text), __METHOD__);
2014-05-06 19:22:56 +00:00
// Get time
2014-05-06 19:22:56 +00:00
$sysstamp = time();
// Save in database
$query = Database::prepare($connection, "INSERT INTO ? (time, type, function, line, text) VALUES ('?', '?', '?', '?', '?')", array(LYCHEE_TABLE_LOG, $sysstamp, $type, $function, $line, $text));
$result = Database::execute($connection, $query, null, null);
2014-05-06 19:22:56 +00:00
2016-01-31 14:44:54 +00:00
if ($result===false) return false;
return true;
2014-05-06 19:22:56 +00:00
}
}
?>