2025-01-13 18:03:44 +08:00
|
|
|
<?php
|
|
|
|
|
2025-01-16 18:00:46 +08:00
|
|
|
namespace app\manystoreapi\behavior;
|
2025-01-13 18:03:44 +08:00
|
|
|
|
|
|
|
class ManystoreLog
|
|
|
|
{
|
|
|
|
public function run(&$params)
|
|
|
|
{
|
|
|
|
if (request()->isPost() && config('fastadmin.auto_record_log')) {
|
|
|
|
\app\manystore\model\ManystoreLog::record();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|