Example #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAutos()
 {
     return $this->hasMany(Auto::className(), ['idcat' => 'id'])->orderBy(['priceT' => SORT_ASC]);
 }
Example #2
0
File: Drivers.php Project: t4le/365
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCar0()
 {
     return $this->hasOne(Auto::className(), ['id' => 'car']);
 }
Example #3
0
File: Autocat.php Project: t4le/365
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAutos()
 {
     return $this->hasMany(Auto::className(), ['idcat' => 'id']);
 }