add all files

This commit is contained in:
2025-10-04 11:38:07 +02:00
parent 84a1f4eb35
commit 68c8245cef
1010 changed files with 266911 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
class Log_model extends CI_Model {
function __construct(){
parent::__construct();
}
public function addLog($eventType, $eventContent, $username=""){
$this->load->database();
$query = $this->db->query("INSERT INTO system_log(event_type, event_content, username) VALUES('".$eventType."','".$eventContent."','".$username."');");
}
public function getAllLoginfo(){
$this->load->database();
$query = $this->db->query('SELECT * FROM system_log ORDER BY event_datetime DESC;');
return $query->result();
}
}
?>