예제 #1
0
파일: Index.php 프로젝트: soanni/stocks_mvc
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getQuotes()
 {
     return $this->hasMany(Quote::className(), ['qid' => 'quoteid'])->viaTable('indiceslinks', ['indid' => 'indexid']);
 }
예제 #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getQuotes()
 {
     return $this->hasMany(Quote::className(), ['companyid' => 'companyid']);
 }
예제 #3
0
파일: Rate.php 프로젝트: soanni/stocks_mvc
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getQuote()
 {
     return $this->hasOne(Quote::className(), ['qid' => 'quoteid']);
 }