Exemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getNetworks()
 {
     return $this->hasMany(Network::className(), ['id' => 'network_id'])->viaTable('network_has_messages', ['messages_id' => 'id']);
 }
Exemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getNetwork()
 {
     return $this->hasOne(Network::className(), ['id' => 'network_id']);
 }
Exemplo n.º 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getNetworks()
 {
     return $this->hasMany(Network::className(), ['accounts_id' => 'id']);
 }