/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = PaymentAggregators::find(); $dataProvider = new ActiveDataProvider(['query' => $query]); $this->load($params); if (!$this->validate()) { // uncomment the following line if you do not want to return any records when validation fails // $query->where('0=1'); return $dataProvider; } $query->andFilterWhere(['id' => $this->id, 'active' => $this->active, 'date_created' => $this->date_created, 'incorrect_access_count' => $this->incorrect_access_count, 'locked' => $this->locked]); $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'access_code', $this->access_code])->andFilterWhere(['like', 'access_password', $this->access_password])->andFilterWhere(['like', 'security_code', $this->security_code])->andFilterWhere(['like', 'email_address', $this->email_address]); unset($_SESSION['exportData']); $_SESSION['exportData'] = $dataProvider; return $dataProvider; }
/** * Finds the PaymentAggregators model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return PaymentAggregators the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = PaymentAggregators::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
public function getAggregators() { return $this->hasOne(PaymentAggregators::className(), ['id' => 'aggregator']); }