BlameableBehavior::className(), * 'createdByAttribute' => 'author_id', * 'updatedByAttribute' => 'updater_id', * ], * ]; * } * ``` * * @author Luciano Baraglia * @author Qiang Xue * @author Alexander Kochetov * @since 2.0 */ class BlameableBehavior extends AttributeBehavior { /** * @var string the attribute that will receive current user ID value */ public $createdByAttribute = 'created_by'; /** * @var string the attribute that will receive current user ID value */ public $updatedByAttribute = 'updated_by'; /** * @var callable the value that will be assigned to the attributes. This should be a valid * PHP callable whose return value will be assigned to the current attribute(s). * The signature of the callable should be: * * ```php * function ($event) { * // return value will be assigned to the attribute(s) * } * ``` * * If this property is not set, the value of `Yii::$app->user->id` will be assigned to the attribute(s). */ public $value; /** * @inheritdoc */ public function init() { parent::init(); if (empty($this->attributes)) { $this->attributes = [ BaseActiveRecord::EVENT_BEFORE_INSERT => [$this->createdByAttribute, $this->updatedByAttribute], BaseActiveRecord::EVENT_BEFORE_UPDATE => $this->updatedByAttribute, ]; } } /** * Evaluates the value of the user. * The return result of this method will be assigned to the current attribute(s). * @param Event $event * @return mixed the value of the user. */ protected function getValue($event) { if ($this->value === null) { $user = Yii::$app->getUser(); return $user && !$user->isGuest ? $user->id : null; } else { return call_user_func($this->value, $event); } } }