@@ -12,14 +12,11 @@ |
||
| 12 | 12 | namespace Icybee\Modules\Users\Block; |
| 13 | 13 | |
| 14 | 14 | use Brickrouge\Group; |
| 15 | - |
|
| 16 | - |
|
| 17 | 15 | use Brickrouge\Document; |
| 18 | 16 | use Brickrouge\Element; |
| 19 | 17 | use Brickrouge\Form; |
| 20 | 18 | use Brickrouge\Text; |
| 21 | 19 | use Brickrouge\Widget; |
| 22 | - |
|
| 23 | 20 | use Icybee\Modules\Users\Module; |
| 24 | 21 | use Icybee\Modules\Users\User; |
| 25 | 22 | |
@@ -65,8 +65,8 @@ discard block |
||
| 65 | 65 | |
| 66 | 66 | Element::GROUPS => [ |
| 67 | 67 | |
| 68 | - 'connection' => [ 'title' => 'Connection' ], |
|
| 69 | - 'advanced' => [ 'title' => 'Advanced' ] |
|
| 68 | + 'connection' => ['title' => 'Connection'], |
|
| 69 | + 'advanced' => ['title' => 'Advanced'] |
|
| 70 | 70 | |
| 71 | 71 | ] |
| 72 | 72 | |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | Group::LABEL => 'language', |
| 173 | 173 | Element::GROUP => 'advanced', |
| 174 | 174 | Element::DESCRIPTION => 'language', |
| 175 | - Element::OPTIONS => [ null => '' ] + $languages |
|
| 175 | + Element::OPTIONS => [null => ''] + $languages |
|
| 176 | 176 | |
| 177 | 177 | ]), |
| 178 | 178 | |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | return null; |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - $rid = [ 2 => true ]; |
|
| 217 | + $rid = [2 => true]; |
|
| 218 | 218 | |
| 219 | 219 | if ($uid) |
| 220 | 220 | { |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | Form::LABEL => 'roles', |
| 237 | 237 | Element::GROUP => 'advanced', |
| 238 | 238 | Element::OPTIONS => $options, |
| 239 | - Element::OPTIONS_DISABLED => [ 2 => true ], |
|
| 239 | + Element::OPTIONS_DISABLED => [2 => true], |
|
| 240 | 240 | Element::REQUIRED => true, |
| 241 | 241 | Element::DESCRIPTION => 'roles', |
| 242 | 242 | |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | { |
| 256 | 256 | $values = $this->values; |
| 257 | 257 | |
| 258 | - $options = [ '<username>' ]; |
|
| 258 | + $options = ['<username>']; |
|
| 259 | 259 | |
| 260 | 260 | if ($values[User::USERNAME]) |
| 261 | 261 | { |
@@ -16,13 +16,11 @@ |
||
| 16 | 16 | use ICanBoogie\HTTP\AuthenticationRequired; |
| 17 | 17 | use ICanBoogie\HTTP\PermissionRequired; |
| 18 | 18 | use ICanBoogie\HTTP\Response; |
| 19 | -use ICanBoogie\HTTP\RequestDispatcher; |
|
| 20 | 19 | use ICanBoogie\HTTP\SecurityError; |
| 21 | 20 | use ICanBoogie\Operation; |
| 22 | 21 | use ICanBoogie\PropertyNotDefined; |
| 23 | 22 | use ICanBoogie\Routing\RouteDispatcher; |
| 24 | 23 | use ICanBoogie\Session; |
| 25 | - |
|
| 26 | 24 | use Icybee\Element\AdminDecorator; |
| 27 | 25 | use Icybee\Element\DocumentDecorator; |
| 28 | 26 | use Icybee\Modules\Members\Member; |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | return; |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | - $event->errors['rid'] = $event->errors->format('The role %name is used by :count users.', [ 'name' => $operation->record->name, ':count' => $count ]); |
|
| 53 | + $event->errors['rid'] = $event->errors->format('The role %name is used by :count users.', ['name' => $operation->record->name, ':count' => $count]); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | /** |
@@ -11,15 +11,12 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Icybee\Modules\Users; |
| 13 | 13 | |
| 14 | -use ICanBoogie\Operation; |
|
| 15 | - |
|
| 16 | 14 | use Brickrouge\A; |
| 17 | 15 | use Brickrouge\Button; |
| 18 | 16 | use Brickrouge\Document; |
| 19 | 17 | use Brickrouge\Element; |
| 20 | 18 | use Brickrouge\Form; |
| 21 | 19 | use Brickrouge\Text; |
| 22 | - |
|
| 23 | 20 | use Icybee\Binding\Core\PrototypedBindings; |
| 24 | 21 | |
| 25 | 22 | class LoginForm extends Form |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | { |
| 51 | 51 | $app = $this->app; |
| 52 | 52 | |
| 53 | - $this->lost_password = new A($this->t('lost_password', [], [ 'scope' => 'users.label', 'default' => 'I forgot my password' ]), "#lost-password", [ |
|
| 53 | + $this->lost_password = new A($this->t('lost_password', [], ['scope' => 'users.label', 'default' => 'I forgot my password']), "#lost-password", [ |
|
| 54 | 54 | |
| 55 | 55 | 'rel' => 'nonce-request' |
| 56 | 56 | |
@@ -11,9 +11,7 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Icybee\Modules\Users; |
| 13 | 13 | |
| 14 | -use ICanBoogie\I18n; |
|
| 15 | 14 | use ICanBoogie\Operation; |
| 16 | - |
|
| 17 | 15 | use Brickrouge\Button; |
| 18 | 16 | use Brickrouge\Element; |
| 19 | 17 | use Brickrouge\Form; |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | |
| 82 | 82 | Element::CHILDREN => [ |
| 83 | 83 | |
| 84 | - new Button('logout', [ 'type' => 'submit' ]) |
|
| 84 | + new Button('logout', ['type' => 'submit']) |
|
| 85 | 85 | |
| 86 | 86 | ] |
| 87 | 87 | |
@@ -13,7 +13,6 @@ |
||
| 13 | 13 | |
| 14 | 14 | use ICanBoogie\Errors; |
| 15 | 15 | use ICanBoogie\Operation; |
| 16 | - |
|
| 17 | 16 | use Icybee\Modules\Users\Module; |
| 18 | 17 | use Icybee\Modules\Users\User; |
| 19 | 18 | |
@@ -12,11 +12,9 @@ |
||
| 12 | 12 | namespace Icybee\Modules\Users\Operation; |
| 13 | 13 | |
| 14 | 14 | use ICanBoogie\Errors; |
| 15 | -use ICanBoogie\HTTP\Request; |
|
| 16 | 15 | use ICanBoogie\I18n; |
| 17 | 16 | use ICanBoogie\Operation; |
| 18 | 17 | use ICanBoogie\Module\ControllerBindings as ModuleBindings; |
| 19 | - |
|
| 20 | 18 | use Icybee\Binding\Core\PrototypedBindings; |
| 21 | 19 | use Icybee\Modules\Registry\MetaCollection; |
| 22 | 20 | use Icybee\Modules\Users\LoginForm; |
@@ -85,8 +85,7 @@ discard block |
||
| 85 | 85 | { |
| 86 | 86 | if ($login_unlock_time > $now) |
| 87 | 87 | { |
| 88 | - throw new \Exception |
|
| 89 | - ( |
|
| 88 | + throw new \Exception( |
|
| 90 | 89 | \ICanBoogie\format("The user account has been locked after multiple failed login attempts. |
| 91 | 90 | An e-mail has been sent to unlock the account. Login attempts are locked until %time, |
| 92 | 91 | unless you unlock the account using the email sent.", [ |
@@ -159,7 +158,7 @@ discard block |
||
| 159 | 158 | |
| 160 | 159 | if (!$user->is_admin && !$user->is_activated) |
| 161 | 160 | { |
| 162 | - $errors->add(null, "User %username is not activated", [ '%username' => $username ]); |
|
| 161 | + $errors->add(null, "User %username is not activated", ['%username' => $username]); |
|
| 163 | 162 | |
| 164 | 163 | return false; |
| 165 | 164 | } |
@@ -13,7 +13,6 @@ |
||
| 13 | 13 | |
| 14 | 14 | use ICanBoogie\Errors; |
| 15 | 15 | use ICanBoogie\Operation; |
| 16 | - |
|
| 17 | 16 | use Icybee\Binding\Core\PrototypedBindings; |
| 18 | 17 | use Icybee\Modules\Users\User; |
| 19 | 18 | |
@@ -13,7 +13,6 @@ |
||
| 13 | 13 | |
| 14 | 14 | use ICanBoogie\Errors; |
| 15 | 15 | use ICanBoogie\HTTP\Request; |
| 16 | - |
|
| 17 | 16 | use Icybee\Modules\Users\Module; |
| 18 | 17 | use Icybee\Modules\Users\User; |
| 19 | 18 | use Icybee\Modules\Users\UserModel; |
@@ -290,7 +290,7 @@ |
||
| 290 | 290 | { |
| 291 | 291 | $record = $this->record; |
| 292 | 292 | |
| 293 | - $this->response->message = $this->format($rc['mode'] == 'update' ? "%name's profile has been updated." : "%name's profile has been created.", [ 'name' => $record->name ]); |
|
| 293 | + $this->response->message = $this->format($rc['mode'] == 'update' ? "%name's profile has been updated." : "%name's profile has been created.", ['name' => $record->name]); |
|
| 294 | 294 | } |
| 295 | 295 | |
| 296 | 296 | return $rc; |
@@ -13,7 +13,6 @@ |
||
| 13 | 13 | |
| 14 | 14 | use ICanBoogie\Errors; |
| 15 | 15 | use ICanBoogie\Operation; |
| 16 | - |
|
| 17 | 16 | use Icybee\Modules\Users\User; |
| 18 | 17 | |
| 19 | 18 | /** |