mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
23 lines
446 B
PHP
23 lines
446 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
class SiteLog extends NexusModel
|
|
{
|
|
protected $table = 'sitelog';
|
|
|
|
protected $fillable = ['added', 'txt', 'security_level', 'uid'];
|
|
|
|
public static function add($uid, $content, $isMod = false): void
|
|
{
|
|
self::query()->insert([
|
|
'uid' => $uid,
|
|
'txt' => $content,
|
|
'security_level' => $isMod ? 'mod' : 'normal',
|
|
'added' => now(),
|
|
]);
|
|
}
|
|
|
|
}
|