コード例 #1
0
ファイル: Post.php プロジェクト: benaspaulikas/yii2-forum
 public function getCategory()
 {
     return $this->hasOne(Category::className(), ['id' => 'category_id']);
 }
コード例 #2
0
ファイル: Category.php プロジェクト: benaspaulikas/yii2-forum
 public function getParent()
 {
     return $this->hasOne(Category::className(), ['id' => 'parent_id']);
 }