Initial commit.
This is to be the new HashRU website based on the Aaronweb.net/Kabuki CMS.
This commit is contained in:
36
models/ErrorLog.php
Normal file
36
models/ErrorLog.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/*****************************************************************************
|
||||
* ErrorLog.php
|
||||
* Contains key class ErrorLog.
|
||||
*
|
||||
* Kabuki CMS (C) 2013-2015, Aaron van Geffen
|
||||
*****************************************************************************/
|
||||
|
||||
class ErrorLog
|
||||
{
|
||||
public static function log(array $data)
|
||||
{
|
||||
if (!Registry::has('db'))
|
||||
return false;
|
||||
|
||||
return Registry::get('db')->query('
|
||||
INSERT INTO log_errors
|
||||
(id_user, message, debug_info, file, line, request_uri, time, ip_address)
|
||||
VALUES
|
||||
({int:id_user}, {string:message}, {string:debug_info}, {string:file}, {int:line},
|
||||
{string:request_uri}, CURRENT_TIMESTAMP, {string:ip_address})',
|
||||
$data);
|
||||
}
|
||||
|
||||
public static function flush()
|
||||
{
|
||||
return Registry::get('db')->query('TRUNCATE log_errors');
|
||||
}
|
||||
|
||||
public static function getCount()
|
||||
{
|
||||
return Registry::get('db')->queryValue('
|
||||
SELECT COUNT(*)
|
||||
FROM log_errors');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user