コード例 #1
0
ファイル: AdminuserController.php プロジェクト: s-nice/snece
 /**
  * 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]);
     }
 }