intersvyaz/yii-old-attribute-behavior
最新稳定版本:v1.0.0
Composer 安装命令:
composer require intersvyaz/yii-old-attribute-behavior
包简介
Yii old attribute behavior.
README 文档
README
Example usage:
class User extends CActiveRecord { /** * @inheritdoc */ public function behaviors() { return array_merge( parent::behaviors(), [ 'oldBehavior' => ['class' => Intersvyaz\Behavior\OldAttributesBehavior::class], ] ); } /** * @inheritdoc */ protected function afterSave() { if ($this->isModified('username')) { // some your logic $oldValue = $this->old->username; // or $oldValue = $this->oldAttributes['username']; // new value in $this->username } parent::afterSave(); } }
统计信息
- 总下载量: 51
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-03-23