コード例 #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']);
 }