@@ -49,8 +49,8 @@ |
||
| 49 | 49 | 'redirect_uri', |
| 50 | 50 | [ |
| 51 | 51 | 'label' => Yii::t('yuncms', 'Grant type'), |
| 52 | - 'value' => function ($model) { |
|
| 53 | - if(empty($model->grant_type)){ |
|
| 52 | + 'value' => function($model) { |
|
| 53 | + if (empty($model->grant_type)) { |
|
| 54 | 54 | return Yii::t('yuncms', 'All Type'); |
| 55 | 55 | } |
| 56 | 56 | return $model->grant_type; |
@@ -29,7 +29,7 @@ |
||
| 29 | 29 | 'columns' => [ |
| 30 | 30 | [ |
| 31 | 31 | 'label' => Yii::t('yuncms', 'App Name'), |
| 32 | - 'value' => function ($model) { |
|
| 32 | + 'value' => function($model) { |
|
| 33 | 33 | return Html::a(Html::encode($model->name), ['/oauth2/client/view', 'id' => $model->client_id]); |
| 34 | 34 | }, |
| 35 | 35 | 'format' => 'html' |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | */ |
| 32 | 32 | public function execute($queue) |
| 33 | 33 | { |
| 34 | - if(self::getVolume()->has($this->path)){ |
|
| 34 | + if (self::getVolume()->has($this->path)) { |
|
| 35 | 35 | self::getVolume()->delete($this->path); |
| 36 | 36 | } |
| 37 | 37 | } |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | <div class="modal-body"> |
| 43 | 43 | <div class="row"> |
| 44 | 44 | <div class="col-sm-12 col-md-8 col-lg-8 col-md-offset-2 col-lg-offset-2"> |
| 45 | - <?= $form->field($model, 'login', ['inputOptions' => ['autofocus' => 'autofocus',]]) ?> |
|
| 45 | + <?= $form->field($model, 'login', ['inputOptions' => ['autofocus' => 'autofocus', ]]) ?> |
|
| 46 | 46 | <?= $form->field($model, 'password')->passwordInput() ?> |
| 47 | 47 | <?= Html::submitButton(Yii::t('yuncms', 'Login'), ['class' => 'btn btn-primary btn-block mt-10']) ?> |
| 48 | 48 | </div> |
@@ -58,11 +58,11 @@ |
||
| 58 | 58 | $this->addError('file', 'File storage failed.'); |
| 59 | 59 | } |
| 60 | 60 | } catch (FileExistsException $e) { |
| 61 | - $this->addError('file',$e->getMessage()); |
|
| 61 | + $this->addError('file', $e->getMessage()); |
|
| 62 | 62 | } catch (ErrorException $e) { |
| 63 | - $this->addError('file',$e->getMessage()); |
|
| 63 | + $this->addError('file', $e->getMessage()); |
|
| 64 | 64 | } catch (InvalidConfigException $e) { |
| 65 | - $this->addError('file',$e->getMessage()); |
|
| 65 | + $this->addError('file', $e->getMessage()); |
|
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | 68 | return false; |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | use yii\helpers\Url; |
| 3 | 3 | use yuncms\helpers\Html; |
| 4 | - ?> |
|
| 4 | + ?> |
|
| 5 | 5 | <li class="nav-header"> |
| 6 | 6 | <div class="logo-element-main"> |
| 7 | 7 | YUNCMS |