Exemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Users::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, 'user_registered' => $this->user_registered, 'user_status' => $this->user_status]);
     $query->andFilterWhere(['like', 'user_login', $this->user_login])->andFilterWhere(['like', 'user_pass', $this->user_pass])->andFilterWhere(['like', 'user_nicename', $this->user_nicename])->andFilterWhere(['like', 'user_email', $this->user_email])->andFilterWhere(['like', 'user_url', $this->user_url])->andFilterWhere(['like', 'user_activation_key', $this->user_activation_key])->andFilterWhere(['like', 'display_name', $this->display_name]);
     return $dataProvider;
 }
Exemplo n.º 2
0
 /**
  * Finds the Users model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return Users the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Users::findOne(['ID' => $id, 'user_status' => 1])) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }