コード例 #1
0
ファイル: AdRealEstate.php プロジェクト: baranov-nt/setyes
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAdCategory()
 {
     return $this->hasOne(AdCategory::className(), ['ad_id' => 'id', 'category' => 'images_label']);
 }
コード例 #2
0
ファイル: AdMainReference.php プロジェクト: baranov-nt/setyes
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAdCategories()
 {
     return $this->hasMany(AdCategory::className(), ['category' => 'id']);
 }
コード例 #3
0
ファイル: Advs.php プロジェクト: MaxFlower/kklk
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCategory()
 {
     return $this->hasOne(AdCategory::className(), ['id' => 'category_id']);
 }