예제 #1
0
파일: Fakta.php 프로젝트: haydiru/GIS
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdVariabel()
 {
     return $this->hasOne(Variabel::className(), ['id' => 'id_variabel']);
 }
예제 #2
0
파일: Topik.php 프로젝트: haydiru/GIS
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getVariabels()
 {
     return $this->hasMany(Variabel::className(), ['id_topik' => 'id']);
 }