AdminLog.php 199 B

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