Пример #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = ServerData::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]);
     $query->andFilterWhere(['like', 'Server', $this->Server])->andFilterWhere(['like', 'usertyp', $this->usertyp])->andFilterWhere(['like', 'user', $this->user])->andFilterWhere(['like', 'password', $this->password])->andFilterWhere(['like', 'snmp_pw', $this->snmp_pw])->andFilterWhere(['like', 'typ', $this->typ])->andFilterWhere(['like', 'stat_wait', $this->stat_wait])->andFilterWhere(['like', 'stat_queries', $this->stat_queries])->andFilterWhere(['like', 'stat_cpu', $this->stat_cpu])->andFilterWhere(['like', 'stat_mem', $this->stat_mem])->andFilterWhere(['like', 'stat_disk', $this->stat_disk])->andFilterWhere(['like', 'stat_sess', $this->stat_sess]);
     return $dataProvider;
 }
Пример #2
0
 /**
  * Finds the ServerData model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return ServerData the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = ServerData::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }