Browse Source

Added notice and warning function to Log (#143)

Tobias Reich 10 years ago
parent
commit
39131033db
1 changed files with 22 additions and 3 deletions
  1. 22 3
      php/modules/Log.php

+ 22 - 3
php/modules/Log.php

@@ -10,25 +10,44 @@ if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
 
 class Log extends Module {
 
+	public static function notice($database, $function, $line, $text = '') {
+
+		return Log::text($database, 'notice', $function, $line, $text);
+
+	}
+
+	public static function warning($database, $function, $line, $text = '') {
+
+		return Log::text($database, 'warning', $function, $line, $text);
+
+	}
+
 	public static function error($database, $function, $line, $text = '') {
 
+		return Log::text($database, 'error', $function, $line, $text);
+
+	}
+
+	public static function text($database, $type, $function, $line, $text = '') {
+
 		# Check dependencies
-		Module::dependencies(isset($database, $function, $line, $text));
+		Module::dependencies(isset($database, $type, $function, $line, $text));
 
 		# Get time
 		$sysstamp = time();
 
 		# Escape
+		$type		= mysqli_real_escape_string($type, $function);
 		$function	= mysqli_real_escape_string($database, $function);
 		$line		= mysqli_real_escape_string($database, $line);
 		$text		= mysqli_real_escape_string($database, $text);
 
 		# Save in database
-		$query	= "INSERT INTO lychee_log (time, type, function, line, text) VALUES ('$sysstamp', 'error', '$function', '$line', '$text');";
+		$query	= "INSERT INTO lychee_log (time, type, function, line, text) VALUES ('$sysstamp', '$type', '$function', '$line', '$text');";
 		$result	= $database->query($query);
 
 		if (!$result) return false;
-		return $database->insert_id;
+		return true;
 
 	}