示例#1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getEavAttributes()
 {
     return $this->hasMany(EavAttribute::className(), ['typeId' => 'id'])->orderBy(['order' => SORT_DESC]);
 }
示例#2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getEavAttribute()
 {
     return $this->hasOne(EavAttribute::className(), ['id' => 'attributeId']);
 }