示例#1
0
 /**
  * @inheritdoc
  */
 public function afterSave($insert, $changedAttributes)
 {
     parent::afterSave($insert, $changedAttributes);
     if ($insert) {
         // Сохраняем профиль
         $this->profile->user_id = $this->id;
         $this->profile->save(false);
         // Сохраняем данные юридического лица
         if ($this->person) {
             $this->person->user_id = $this->id;
             $this->person->save(false);
         }
     }
 }