コード例 #1
0
ファイル: ShopCategory.php プロジェクト: buuug7/game4039
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getShopCategories()
 {
     return $this->hasMany(ShopCategory::className(), ['parent_id' => 'id']);
 }
コード例 #2
0
ファイル: ShopProduct.php プロジェクト: buuug7/game4039
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCategory()
 {
     return $this->hasOne(ShopCategory::className(), ['id' => 'category_id']);
 }