/** * @return \yii\db\ActiveQuery */ public function getPosts() { return $this->hasMany(Post::className(), ['id' => 'post_id'])->viaTable('{{%term_relationship}}', ['term_id' => 'id']); }
/** * @return \yii\db\ActiveQuery */ public function getPosts() { return $this->hasMany(Post::className(), ['post_type' => 'id']); }
/** * @return \yii\db\ActiveQuery */ public function getCommentPost() { return $this->hasOne(Post::className(), ['id' => 'comment_post_id']); }
/** * @return \yii\db\ActiveQuery */ public function getMediaPost() { return $this->hasOne(Post::className(), ['id' => 'media_post_id']); }