Example #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAdCategory()
 {
     return $this->hasOne(AdCategory::className(), ['ad_id' => 'id', 'category' => 'images_label']);
 }
Example #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAdCategories()
 {
     return $this->hasMany(AdCategory::className(), ['category' => 'id']);
 }
Example #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCategory()
 {
     return $this->hasOne(AdCategory::className(), ['id' => 'category_id']);
 }