2016
03-14
03-14
Yii2.0后台添加《admin操作日志》的功能
出于监控多用户操作后台的目的,往往需要把各个管理员操作了什么记录下来。这个功能用yii2来实现简直是太简单了!下边上代码~此demo基于advanced在backend目录创建components/AdminLog.php<?phpnamespacebackend\components;useYii;useyii\helpers\Url;classAdminLog{publicstaticfunctionwrite($event){//具体要记录什么东西,自己来优化$descriptionif(!empty($event->changedAttributes)){...
继续阅读 >