コード例 #1
0
ファイル: User.php プロジェクト: HeavyDots/heavyCMS
 public function afterSave($insert, $changedAttributes)
 {
     parent::afterSave($insert, $changedAttributes);
     if ($insert) {
         $userProfile = new UserProfile();
         $userProfile->name = $this->username;
         $this->link('userProfile', $userProfile);
     }
 }
コード例 #2
0
ファイル: Post.php プロジェクト: ninjacto/ninjacto.com
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getUser()
 {
     return $this->hasOne(User::className(), ['id' => 'user_id']);
 }
コード例 #3
0
ファイル: User.php プロジェクト: tolik505/bl
 /**
  * @inheritdoc
  */
 public function behaviors()
 {
     return \yii\helpers\ArrayHelper::merge(parent::behaviors(), ['timestamp' => ['class' => \yii\behaviors\TimestampBehavior::className()]]);
 }