/**
  * @return \yii\db\ActiveQuery
  */
 public function getIdAd()
 {
     return $this->hasOne(Advertise::className(), ['id' => 'IdAd']);
 }
Example #2
0
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), ['img' => Yii::t('languecenter', 'Image')]);
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAdvertises()
 {
     return $this->hasMany(Advertise::className(), ['show_in' => 'ID']);
 }