jeffersonsimaogoncalves/cakephp-auditing

CakePHP的审计插件

安装: 5

依赖项: 0

建议者: 0

安全: 0

星标: 1

关注者: 2

分支: 1

类型:cakephp-plugin

1.1.4 2018-11-22 18:31 UTC

This package is auto-updated.

Last update: 2024-09-07 06:21:42 UTC


README

此插件负责在数据库中执行持久化操作时收集变更。

安装

您可以使用composer进行安装。

composer require jeffersonsimaogoncalves/cakephp-auditing

启用插件

$ bin/cake plugin load JeffersonSimaoGoncalves/Auditing

配置行为

// src/Model/Table/ExampleTable.php

class ExampleTable extends Table
{
    /**
     * @param array $config
     *
     * @return void
     */
    public function initialize(array $config)
    {
        parent::initialize($config);

        // Add the behaviour to your table
        $this->addBehavior('JeffersonSimaoGoncalves/Auditing.Logger');
    }
}