@@ -91,12 +91,12 @@ discard block |
||
91 | 91 | 'emailRequired' => ['email', 'required'], |
92 | 92 | 'emailTrim' => ['email', 'filter', 'filter' => 'trim'], |
93 | 93 | 'emailPattern' => ['email', 'email'], |
94 | - 'emailUsernameUnique' => [['email', 'username'], 'unique', 'when' => function ($model, $attribute) { |
|
94 | + 'emailUsernameUnique' => [['email', 'username'], 'unique', 'when' => function($model, $attribute) { |
|
95 | 95 | return $this->user->$attribute != $model->$attribute; |
96 | 96 | }, 'targetClass' => User::class], |
97 | 97 | 'newPasswordLength' => ['new_password', 'string', 'min' => 6], |
98 | 98 | 'currentPasswordRequired' => ['current_password', 'required'], |
99 | - 'currentPasswordValidate' => ['current_password', function ($attr) { |
|
99 | + 'currentPasswordValidate' => ['current_password', function($attr) { |
|
100 | 100 | if (!PasswordHelper::validate($this->$attr, $this->user->password_hash)) { |
101 | 101 | $this->addError($attr, Yii::t('yuncms', 'Current password is not valid')); |
102 | 102 | } |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | if ($this->email == $this->user->email && $this->user->unconfirmed_email != null) { |
141 | 141 | $this->user->unconfirmed_email = null; |
142 | 142 | } elseif ($this->email != $this->user->email) { |
143 | - switch (Yii::$app->settings->get('emailChangeStrategy','user')) { |
|
143 | + switch (Yii::$app->settings->get('emailChangeStrategy', 'user')) { |
|
144 | 144 | case UserSettings::STRATEGY_INSECURE: |
145 | 145 | $this->insecureEmailChange(); |
146 | 146 | break; |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | 'emailRequired' => ['email', 'required'], |
50 | 50 | 'emailPattern' => ['email', 'email'], |
51 | 51 | 'emailExist' => ['email', 'exist', 'targetClass' => User::class], |
52 | - 'emailConfirmed' => ['email', function () { |
|
52 | + 'emailConfirmed' => ['email', function() { |
|
53 | 53 | if ($this->user != null && $this->user->isEmailConfirmed) { |
54 | 54 | $this->addError('email', Yii::t('yuncms', 'This account has already been confirmed')); |
55 | 55 | } |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | /** @var UserToken $token */ |
89 | 89 | $token = new UserToken(['user_id' => $this->user->id, 'type' => UserToken::TYPE_CONFIRMATION]); |
90 | 90 | $token->save(false); |
91 | - Yii::$app->sendMail($this->user->email,Yii::t('yuncms', 'Confirm account on {0}', Yii::$app->name),'user/confirmation',['user' => $this->user, 'token' => $token]); |
|
91 | + Yii::$app->sendMail($this->user->email, Yii::t('yuncms', 'Confirm account on {0}', Yii::$app->name), 'user/confirmation', ['user' => $this->user, 'token' => $token]); |
|
92 | 92 | Yii::$app->session->setFlash('info', Yii::t('yuncms', 'A message has been sent to your email address. It contains a confirmation link that you must click to complete registration.')); |
93 | 93 | return true; |
94 | 94 | } |
@@ -63,9 +63,9 @@ discard block |
||
63 | 63 | 'emailRequired' => ['email', 'required'], |
64 | 64 | 'emailPattern' => ['email', 'email'], |
65 | 65 | 'emailExist' => ['email', 'exist', 'targetClass' => User::class, 'message' => Yii::t('yuncms', 'There is no user with this email address')], |
66 | - 'emailUnconfirmed' => ['email', function ($attribute) { |
|
66 | + 'emailUnconfirmed' => ['email', function($attribute) { |
|
67 | 67 | $this->user = User::findByEmail($this->email); |
68 | - if ($this->user !== null && Yii::$app->settings->get('enableConfirmation','user') && !$this->user->isEmailConfirmed) { |
|
68 | + if ($this->user !== null && Yii::$app->settings->get('enableConfirmation', 'user') && !$this->user->isEmailConfirmed) { |
|
69 | 69 | $this->addError($attribute, Yii::t('yuncms', 'You need to confirm your email address.')); |
70 | 70 | } |
71 | 71 | }], |
@@ -83,9 +83,9 @@ discard block |
||
83 | 83 | { |
84 | 84 | if ($this->validate()) { |
85 | 85 | /** @var UserToken $token */ |
86 | - $token = new UserToken([ 'user_id' => $this->user->id, 'type' => UserToken::TYPE_RECOVERY]); |
|
86 | + $token = new UserToken(['user_id' => $this->user->id, 'type' => UserToken::TYPE_RECOVERY]); |
|
87 | 87 | $token->save(false); |
88 | - Yii::$app->sendMail($this->user->email,Yii::t('yuncms', 'Complete password reset on {0}', Yii::$app->name),'user/recovery',['user' => $this->user, 'token' => $token]); |
|
88 | + Yii::$app->sendMail($this->user->email, Yii::t('yuncms', 'Complete password reset on {0}', Yii::$app->name), 'user/recovery', ['user' => $this->user, 'token' => $token]); |
|
89 | 89 | Yii::$app->session->setFlash('info', Yii::t('yuncms', 'An email has been sent with instructions for resetting your password')); |
90 | 90 | return true; |
91 | 91 | } |
@@ -30,7 +30,7 @@ |
||
30 | 30 | 'location' => $this->string()->comment('Location'), |
31 | 31 | 'address' => $this->string()->comment('Address'), |
32 | 32 | 'website' => $this->string()->comment('Website'), |
33 | - 'timezone' => $this->string(100)->comment('Timezone'),//默认格林威治时间 |
|
33 | + 'timezone' => $this->string(100)->comment('Timezone'), //默认格林威治时间 |
|
34 | 34 | 'birthday' => $this->string(15)->comment('Birthday'), |
35 | 35 | 'current' => $this->smallInteger(1)->comment('Current'), |
36 | 36 | 'qq' => $this->string(11)->comment('QQ'), |
@@ -42,7 +42,7 @@ |
||
42 | 42 | { |
43 | 43 | /** @var ActiveRecord $class */ |
44 | 44 | $class = $this->modelClass; |
45 | - $class::create($this->attributes,$this->runValidation); |
|
45 | + $class::create($this->attributes, $this->runValidation); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | if ($app->hasModule('user') && ($module = $app->getModule('user')) instanceof Module) { |
31 | 31 | //监听用户活动时间 |
32 | 32 | /** @var \yii\web\UserEvent $event */ |
33 | - $app->on(Application::EVENT_AFTER_REQUEST, function ($event) use ($app) { |
|
33 | + $app->on(Application::EVENT_AFTER_REQUEST, function($event) use ($app) { |
|
34 | 34 | if (!$app->user->isGuest && Yii::$app->has('queue')) { |
35 | 35 | $user = UserExtra::findOne(['user_id' => $app->user->id]); |
36 | 36 | $user->updateAttributesAsync(['last_visit' => time()]); |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | //监听用户登录事件 |
41 | 41 | /** @var \yii\web\UserEvent $event */ |
42 | - $app->user->on(User::EVENT_AFTER_LOGIN, function ($event) use ($app) { |
|
42 | + $app->user->on(User::EVENT_AFTER_LOGIN, function($event) use ($app) { |
|
43 | 43 | //记录最后登录时间记录最后登录IP记录登录次数 |
44 | 44 | $user = UserExtra::findOne(['user_id' => $app->user->id]); |
45 | 45 | $user->updateAttributesAsync(['login_at' => time(), 'login_ip' => Yii::$app->request->userIP]); |
@@ -58,7 +58,7 @@ |
||
58 | 58 | { |
59 | 59 | return parent::one($db); |
60 | 60 | } |
61 | -<?php if(isset($labels['created_at'])): ?> |
|
61 | +<?php if (isset($labels['created_at'])): ?> |
|
62 | 62 | |
63 | 63 | /** |
64 | 64 | * 热门模型 |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | use <?= ltrim($generator->modelClass, '\\') ?>; |
37 | 37 | <?php if (!empty($generator->searchModelClass)): ?> |
38 | 38 | use <?= ltrim($generator->searchModelClass, '\\') . (isset($searchModelAlias) ? " as $searchModelAlias" : "") ?>; |
39 | -<?php else: ?> |
|
39 | +<?php else : ?> |
|
40 | 40 | use yii\data\ActiveDataProvider; |
41 | 41 | <?php endif; ?> |
42 | 42 | use <?= ltrim($generator->baseControllerClass, '\\') ?>; |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | 'searchModel' => $searchModel, |
78 | 78 | 'dataProvider' => $dataProvider, |
79 | 79 | ]); |
80 | -<?php else: ?> |
|
80 | +<?php else : ?> |
|
81 | 81 | $dataProvider = new ActiveDataProvider([ |
82 | 82 | 'query' => <?= $modelClass ?>::find(), |
83 | 83 | ]); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | return ActiveForm::validate($model); |
115 | 115 | } |
116 | 116 | if ($model->load(Yii::$app->request->post()) && $model->save()) { |
117 | - Yii::$app->getSession()->setFlash('success', <?= $generator->generateString('Create success.');?>); |
|
117 | + Yii::$app->getSession()->setFlash('success', <?= $generator->generateString('Create success.'); ?>); |
|
118 | 118 | return $this->redirect(['view', <?= $urlParams ?>]); |
119 | 119 | } else { |
120 | 120 | return $this->render('create', [ |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | return ActiveForm::validate($model); |
138 | 138 | } |
139 | 139 | if ($model->load(Yii::$app->request->post()) && $model->save()) { |
140 | - Yii::$app->getSession()->setFlash('success', <?= $generator->generateString('Update success.');?>); |
|
140 | + Yii::$app->getSession()->setFlash('success', <?= $generator->generateString('Update success.'); ?>); |
|
141 | 141 | return $this->redirect(['view', <?= $urlParams ?>]); |
142 | 142 | } else { |
143 | 143 | return $this->render('update', [ |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | public function actionDelete(<?= $actionParams ?>) |
156 | 156 | { |
157 | 157 | $this->findModel(<?= $actionParams ?>)->delete(); |
158 | - Yii::$app->getSession()->setFlash('success', <?= $generator->generateString('Delete success.');?>); |
|
158 | + Yii::$app->getSession()->setFlash('success', <?= $generator->generateString('Delete success.'); ?>); |
|
159 | 159 | return $this->redirect(['index']); |
160 | 160 | } |
161 | 161 | /** |
@@ -170,9 +170,9 @@ discard block |
||
170 | 170 | $model = $this->findModel($id); |
171 | 171 | $model->delete(); |
172 | 172 | } |
173 | - Yii::$app->getSession()->setFlash('success', <?= $generator->generateString('Delete success.');?>); |
|
173 | + Yii::$app->getSession()->setFlash('success', <?= $generator->generateString('Delete success.'); ?>); |
|
174 | 174 | } else { |
175 | - Yii::$app->getSession()->setFlash('success', <?= $generator->generateString('Delete failed.');?>); |
|
175 | + Yii::$app->getSession()->setFlash('success', <?= $generator->generateString('Delete failed.'); ?>); |
|
176 | 176 | } |
177 | 177 | return $this->redirect(['index']); |
178 | 178 | } |
@@ -36,9 +36,12 @@ discard block |
||
36 | 36 | use <?= ltrim($generator->modelClass, '\\') ?>; |
37 | 37 | <?php if (!empty($generator->searchModelClass)): ?> |
38 | 38 | use <?= ltrim($generator->searchModelClass, '\\') . (isset($searchModelAlias) ? " as $searchModelAlias" : "") ?>; |
39 | -<?php else: ?> |
|
39 | +<?php else { |
|
40 | + : ?> |
|
40 | 41 | use yii\data\ActiveDataProvider; |
41 | -<?php endif; ?> |
|
42 | +<?php endif; |
|
43 | +} |
|
44 | +?> |
|
42 | 45 | use <?= ltrim($generator->baseControllerClass, '\\') ?>; |
43 | 46 | use yuncms\web\Response; |
44 | 47 | |
@@ -77,7 +80,8 @@ discard block |
||
77 | 80 | 'searchModel' => $searchModel, |
78 | 81 | 'dataProvider' => $dataProvider, |
79 | 82 | ]); |
80 | -<?php else: ?> |
|
83 | +<?php else { |
|
84 | + : ?> |
|
81 | 85 | $dataProvider = new ActiveDataProvider([ |
82 | 86 | 'query' => <?= $modelClass ?>::find(), |
83 | 87 | ]); |
@@ -85,7 +89,9 @@ discard block |
||
85 | 89 | return $this->render('index', [ |
86 | 90 | 'dataProvider' => $dataProvider, |
87 | 91 | ]); |
88 | -<?php endif; ?> |
|
92 | +<?php endif; |
|
93 | +} |
|
94 | +?> |
|
89 | 95 | } |
90 | 96 | |
91 | 97 | /** |
@@ -36,8 +36,8 @@ |
||
36 | 36 | } |
37 | 37 | ?> |
38 | 38 | <div class="form-group"> |
39 | - <?= "<?= " ?>Html::submitButton(<?= $generator->generateString('Search');?>, ['class' => 'btn btn-primary']) ?> |
|
40 | - <?= "<?= " ?>Html::resetButton(<?= $generator->generateString('Reset');?>, ['class' => 'btn btn-default']) ?> |
|
39 | + <?= "<?= " ?>Html::submitButton(<?= $generator->generateString('Search'); ?>, ['class' => 'btn btn-primary']) ?> |
|
40 | + <?= "<?= " ?>Html::resetButton(<?= $generator->generateString('Reset'); ?>, ['class' => 'btn btn-default']) ?> |
|
41 | 41 | </div> |
42 | 42 | |
43 | 43 | <?= "<?php " ?>ActiveForm::end(); ?> |