AdminLog.php 226 B

123456789101112131415161718
  1. <?php
  2. namespace app\admin\behavior;
  3. use think\Config;
  4. class AdminLog
  5. {
  6. public function run(&$params)
  7. {
  8. if (request()->isPost())
  9. {
  10. \app\admin\model\AdminLog::record();
  11. }
  12. }
  13. }