コード例 #1
0
ファイル: UserController.php プロジェクト: s-nice/snece
 /**
  * Creates a new user model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new user();
     $model->setScenario('default');
     $model->status = 10;
     if ($model->load(Yii::$app->request->post())) {
         $user = User::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]);
     }
 }
コード例 #2
0
ファイル: UserController.php プロジェクト: Vlad9330/waiver
 public function actionCreate()
 {
     $model = new user();
     $model->setScenario('create');
     //  $model->created_at = time();
     $model->auth_key = Yii::$app->security->generateRandomString();
     if ($model->load(Yii::$app->request->post())) {
         if ($model->save()) {
             $model->role == 2 ? Yii::$app->authManager->assign(Yii::$app->authManager->getRole('admin'), $model->id) : Yii::$app->authManager->assign(Yii::$app->authManager->getRole('user'), $model->id);
             echo 1;
         } else {
             echo 0;
         }
         //   return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->renderAjax('create', ['model' => $model]);
     }
 }