承接 intersvyaz/yii-old-attribute-behavior 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

intersvyaz/yii-old-attribute-behavior

最新稳定版本:v1.0.0

Composer 安装命令:

composer require intersvyaz/yii-old-attribute-behavior

包简介

Yii old attribute behavior.

README 文档

README

Latest Stable Version Total Downloads Latest Unstable Version License

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

GitHub 信息

  • Stars: 1
  • Watchers: 9
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-03-23