コード例 #1
0
ファイル: RSettings.php プロジェクト: a7000q/yasvoboden
 public function getCategory()
 {
     return $this->hasOne(FCategory::className(), ['id' => 'value']);
 }
コード例 #2
0
ファイル: FFields.php プロジェクト: a7000q/yasvoboden
 public function getParentCategory()
 {
     return $this->hasOne(FCategory::className(), ['id' => 'id_category']);
 }
コード例 #3
0
ファイル: FCategory.php プロジェクト: a7000q/yasvoboden
 public function getParent()
 {
     return $this->hasOne(FCategory::className(), ['id' => 'parent_id']);
 }
コード例 #4
0
ファイル: RRelated.php プロジェクト: a7000q/yasvoboden
 public function getRelatedCategoryDetail()
 {
     return $this->hasOne(FCategory::className(), ['id' => 'id_related_category']);
 }