Log.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. ###
  3. # @name Log Module
  4. # @copyright 2015 by Tobias Reich
  5. ###
  6. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  7. final class Log extends Module {
  8. public static function notice($function, $line, $text = '') {
  9. return Log::text('notice', $function, $line, $text);
  10. }
  11. public static function warning($function, $line, $text = '') {
  12. return Log::text('warning', $function, $line, $text);
  13. }
  14. public static function error($function, $line, $text = '') {
  15. return Log::text('error', $function, $line, $text);
  16. }
  17. private static function text($type, $function, $line, $text = '') {
  18. # Check dependencies
  19. Module::dependencies(isset($type, $function, $line, $text));
  20. # Get time
  21. $sysstamp = time();
  22. # Save in database
  23. $query = Database::prepare(Database::get(), "INSERT INTO ? (time, type, function, line, text) VALUES ('?', '?', '?', '?', '?')", array(LYCHEE_TABLE_LOG, $sysstamp, $type, $function, $line, $text));
  24. $result = Database::get()->query($query);
  25. if (!$result) return false;
  26. return true;
  27. }
  28. }
  29. ?>