Skip to content

lisi4ok/yii2-auditlog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yii2 Audit Log

Yii2 Audit Log. This extension log all models actions -> find/insert/update/delete.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist lisi4ok/yii2-auditlog "*"

or add

"lisi4ok/yii2-auditlog": "*"

to the require section of your composer.json file.

Go to yii app folder. and type:

./yii migrate --migrationPath=@vendor/lisi4ok/yii2-auditlog/migrations

Usage

<?php
namespace app\models;
use Yii;
use lisi4ok\auditlog\behaviors\LoggableBehavior;

class MyModel extends \yii\db\ActiveRecord
{
	public function behaviors() {
		return [
			[
				'class' => LoggableBehavior::className(),
				'ignoredAttributes' => ['created_at', 'updated_at', 'created_by', 'updated_by'], // default []
				'ignorePrimaryKey' => true, // default false
				'ignorePrimaryKeyForActions' => ['insert', 'update'], //default [] Note: (if ignorePrimaryKey set to true, ignorePrimaryKeyForActions is empty will apply for all)
				'dateTimeFormat' => 'Y-m-d H:i:s', // default 'Y-m-d H:i:s'
			],
		];
	}
}

About

Yii2 Audit Log

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages