Example #1
0
 /**
  * Creates a new Adminuser model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Adminuser();
     $model->setScenario('default');
     $model->status = 1;
     if ($model->load(Yii::$app->request->post())) {
         $user = Adminuser::find()->where(['username' => $model->username])->one();
         if ($user) {
             $model->addError('username', '用户名已存在.');
             return $this->render('create', ['model' => $model]);
         }
         $pwl = strlen($model->password_hash);
         if ($pwl < 6) {
             $model->addError('password_hash', '密码不能少于6位.');
             return $this->render('create', ['model' => $model]);
         }
         $model->created_at = time();
         $model->updated_at = time();
         $model->auth_key = Yii::$app->security->generateRandomString();
         $model->password_hash = Yii::$app->security->generatePasswordHash($model->password_hash);
         if ($model->save()) {
             return $this->redirect(['view', 'id' => $model->id]);
         }
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
Example #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Adminuser::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, 'status' => $this->status, 'type' => $this->type, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at]);
     $query->andFilterWhere(['like', 'username', $this->username])->andFilterWhere(['like', 'auth_key', $this->auth_key])->andFilterWhere(['like', 'password_hash', $this->password_hash])->andFilterWhere(['like', 'password_reset_token', $this->password_reset_token])->andFilterWhere(['like', 'email', $this->email])->andFilterWhere(['like', 'avatar', $this->avatar])->andFilterWhere(['like', 'phone', $this->phone]);
     return $dataProvider;
 }