CakePHP-Audit-Log-Plugin icon indicating copy to clipboard operation
CakePHP-Audit-Log-Plugin copied to clipboard

Records changes made to an object during CRUD operations.

Results 17 CakePHP-Audit-Log-Plugin issues
Sort by recently updated
recently updated
newest added

Audit data is growing much faster than real data, so it is may be needed to use alternative database to store the audit logs.

Hi, First off, I really the way this plugin is setup and how it deals with logging. Is it an idea to be able to ignore the creation of AuditDelta...

Could be added. See also #82

Enhancement

In case of HABTM model, the behavior should also log any changes made to additional fields in the HABTM join table. For example, a `SalesOrder hasAndBelongsToMany Product` while the structure...

Feature discussion ref: https://github.com/robwilkerson/CakePHP-Audit-Log-Plugin/issues/109 **Added**: - additinal config settings - ``ignoreDeep``: boolean; used to ignore specified properties in `ignore` array from HABTM and join table data - ``deepLog``: boolean/Array; used...

Hi, Rob. Thanks for your creation, this has been a great deal for me. This is the first time I have included your plugin in a project, so please bear...

I just started using your plugin with my CakePHP 2.x installation and so far, so good. Then I saved some translated data to the I18n table associated with the Translate...

I have a standard habtm config. House habtm Property, with the table houses_properties and without the model HouseProperty. On House model: public $actsAs = array('AuditLog.Auditable' => array('Property')); But when I...

As mentioned in https://github.com/robwilkerson/CakePHP-Audit-Log-Plugin/pull/102#issue-177548930, I am planning to move as much as possible code away from the behavior into the model(s). This should make the whole plugin code much cleaner...