コード例 #1
0
ファイル: Menu.php プロジェクト: modernkernel/yii2-skeleton
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getUpdatedBy()
 {
     return $this->hasOne(Account::className(), ['id' => 'updated_by']);
 }
コード例 #2
0
ファイル: Blog.php プロジェクト: modernkernel/yii2-skeleton
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAuthor()
 {
     return $this->hasOne(Account::className(), ['id' => 'created_by']);
 }
コード例 #3
0
ファイル: Auth.php プロジェクト: modernkernel/yii2-skeleton
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getUser()
 {
     return $this->hasOne(Account::className(), ['id' => 'user_id']);
 }