14 lines
255 B
PHP
14 lines
255 B
PHP
<?php
|
|
|
|
namespace app\manystoreapi\behavior;
|
|
|
|
class ManystoreLog
|
|
{
|
|
public function run(&$params)
|
|
{
|
|
if (request()->isPost() && config('fastadmin.auto_record_log')) {
|
|
\app\manystore\model\ManystoreLog::record();
|
|
}
|
|
}
|
|
}
|