cornernote / yii2-softdelete
Soft delete behavior for Yii2.
Package info
github.com/cornernote/yii2-softdelete
Type:yii2-behavior
pkg:composer/cornernote/yii2-softdelete
1.0.3
2017-09-13 23:12 UTC
Requires
- yiisoft/yii2: *
Requires (Dev)
- phpunit/dbunit: ~1.0
- phpunit/phpunit: ~4.0
- scrutinizer/ocular: ~1.1
This package is auto-updated.
Last update: 2026-02-19 21:27:22 UTC
README
Soft delete behavior for Yii2.
Installation
The preferred way to install this extension is through composer.
Either run
$ composer require cornernote/yii2-softdelete "*"
or add
"cornernote/yii2-softdelete": "*"
to the require section of your composer.json file.
Usage
In your ActiveRecord class:
public function behaviors() { return [ \cornernote\softdelete\SoftDeleteBehavior::className(), // or [ 'class' => \cornernote\softdelete\SoftDeleteBehavior::className(), 'attribute' => 'deleted_time', 'value' => new \yii\db\Expression('NOW()'), // for sqlite use - new \yii\db\Expression("date('now')") ], ]; }
then you can use explicitly $model->softDelete(), $model->hardDelete()
and $model->unDelete() (for softly deleted models). Each of these methods return
boolean result. Also $model->softDelete() calls indirectly from $model->delete(),
which always returns false.
In your ActiveQuery class:
public function behaviors() { return [ \cornernote\softdelete\SoftDeleteQueryBehavior::className(), // or [ 'class' => \cornernote\softdelete\SoftDeleteQueryBehavior::className(), 'attribute' => 'deleted_time', ], ]; }