| Recommend this page to a friend! | 
| Info | Documentation | Reputation | Support forum | Blog | Links | 
| Ratings | Unique User Downloads | Download Rankings | ||||
| Not yet rated by the users | Total: 17 | All time:  11,405 This week: 455 | ||||
| Version | License | PHP version | Categories | |||
| d3audittrail 1.0 | Freeware | 5 | PHP 5, Databases, Libraries, Design P... | 
| Description | Author  | |||||||||||||||||||||||
This package can be used to keep track of changes to model object data values.  | 
  | |||||||||||||||||||||||
    'controllerMap' => [
        'migrate' => [
            'class' => 'yii\console\controllers\MigrateController',
            'migrationPath' => [
                '@vendor/sammaye/yii2-audittrail/migrations',
                '@vendor/d3yii2/d3audittrail/migrations',
            ],
        ],
    ],
    'modules' => [
        'd3audittrail' => [
            'class' => 'd3yii2\d3audittrail\Module',
        ],
    ]    
    'params' => [
        'audittrail.table' => 'tbl_audit_trail'
    ]    
    public function behaviors(): array
    {
        return ArrayHelper::merge(
            parent::behaviors(),
            [
                'sammaye\audittrail\LoggableBehavior'
            ]
        );
    }
class Model extends extends \yii\db\ActiveRecord
    /
    * model label 
    */
    public function tableLabel(): string
    {
        return 'Data Record';
    }
    public static function audittrailHiddedFields()
    {
        return [
            'password'
        ];
    }
    public static function audittrailSqlFields()
    {
        return [
            'client_id' => 'select name from client where id=:id'
        ];
    }
    public static function audittrailRefModels()
    {
        return [
            [
                'model' => TblAuditTrail::class,
                'ref_field' => 'my_id',
                'hidded_fields' => ['a','b'],
                'field_sql' => [
                    'field1' => 'select name from user where id=:id'
                 ]               
            ]           
        ];
    }
}
    $this->addPageButtons(AuditTrailButton::widget([
                'modelName' => coalmar\delivery\models\CmdDelivery::className(),
                'modelId' => $model->id
    ]));
| File | Role | Description | ||
|---|---|---|---|---|
| Data | Auxiliary data | |||
| Class | Class source | |||
| Doc. | Documentation | |||
| / | migrations | 
| File | Role | Description | 
|---|---|---|
|    | 
Class | Class source | 
| / | widgets | 
| File | Role | Description | 
|---|---|---|
|    | 
Class | Class source | 
|    | 
Class | Class source | 
| The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. | 
| Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
| 100% | 
  | 
  | 
| Applications that use this package | 
 If you know an application of this package, send a message to the author to add a link here.