@@ -25,7 +25,7 @@ |
||
| 25 | 25 | { |
| 26 | 26 | $parentMenuItems = app(ArticleRepository::class) |
| 27 | 27 | ->getTopLevel() |
| 28 | - ->filter(function (Article $article) { |
|
| 28 | + ->filter(function(Article $article) { |
|
| 29 | 29 | return $article->technical_name != SpecialArticle::HOME; |
| 30 | 30 | }) |
| 31 | 31 | ->pluck('name', 'id') |
@@ -10,26 +10,26 @@ discard block |
||
| 10 | 10 | { |
| 11 | 11 | public function register() |
| 12 | 12 | { |
| 13 | - Menu::macro('back', function () { |
|
| 13 | + Menu::macro('back', function() { |
|
| 14 | 14 | return Menu::new() |
| 15 | 15 | ->setActiveClass('-active') |
| 16 | 16 | ->setActiveFromRequest('/blender'); |
| 17 | 17 | }); |
| 18 | 18 | |
| 19 | - Menu::macro('moduleGroup', function ($title) { |
|
| 19 | + Menu::macro('moduleGroup', function($title) { |
|
| 20 | 20 | return Menu::back() |
| 21 | 21 | ->addParentClass('menu__group') |
| 22 | 22 | ->setParentAttribute('data-menu-group', fragment("back.nav.{$title}")) |
| 23 | - ->registerFilter(function (Link $link) { |
|
| 23 | + ->registerFilter(function(Link $link) { |
|
| 24 | 24 | $link->addParentClass('menu__group__item'); |
| 25 | 25 | }); |
| 26 | 26 | }); |
| 27 | 27 | |
| 28 | - Menu::macro('module', function (string $action, string $name) { |
|
| 28 | + Menu::macro('module', function(string $action, string $name) { |
|
| 29 | 29 | return $this->action("Back\\{$action}", fragment("back.{$name}")); |
| 30 | 30 | }); |
| 31 | 31 | |
| 32 | - Menu::macro('backMain', function () { |
|
| 32 | + Menu::macro('backMain', function() { |
|
| 33 | 33 | return Menu::back() |
| 34 | 34 | ->addClass('menu__groups') |
| 35 | 35 | ->setAttribute('data-menu-groups') |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | ->module('StatisticsController@index', 'statistics.menuTitle')); |
| 51 | 51 | }); |
| 52 | 52 | |
| 53 | - Menu::macro('backUser', function () { |
|
| 53 | + Menu::macro('backUser', function() { |
|
| 54 | 54 | |
| 55 | 55 | $avatar = Html::avatar(current_user(), '-small'). |
| 56 | 56 | el('span.:response-desktop-only', current_user()->email); |
@@ -60,9 +60,9 @@ discard block |
||
| 60 | 60 | ->html(view('back.auth._partials.logoutForm')); |
| 61 | 61 | }); |
| 62 | 62 | |
| 63 | - Menu::macro('breadcrumbs', function (array $breadcrumbs) { |
|
| 64 | - return Menu::build($breadcrumbs, function (Menu $menu, $actionWithParameters, $label) { |
|
| 65 | - if (! is_array($actionWithParameters)) { |
|
| 63 | + Menu::macro('breadcrumbs', function(array $breadcrumbs) { |
|
| 64 | + return Menu::build($breadcrumbs, function(Menu $menu, $actionWithParameters, $label) { |
|
| 65 | + if (!is_array($actionWithParameters)) { |
|
| 66 | 66 | $actionWithParameters = [$actionWithParameters]; |
| 67 | 67 | } |
| 68 | 68 | |
@@ -36,11 +36,11 @@ discard block |
||
| 36 | 36 | |
| 37 | 37 | protected function registerFragmentBreadcrumbs() |
| 38 | 38 | { |
| 39 | - BreadCrumbsManager::register('fragmentsBack', function ($breadcrumbs) { |
|
| 39 | + BreadCrumbsManager::register('fragmentsBack', function($breadcrumbs) { |
|
| 40 | 40 | $breadcrumbs->push(fragment('back.fragments.title'), action('Back\FragmentsController@index')); |
| 41 | 41 | }); |
| 42 | 42 | |
| 43 | - BreadCrumbsManager::register('fragmentsDetailBack', function ($breadcrumbs, $string) { |
|
| 43 | + BreadCrumbsManager::register('fragmentsDetailBack', function($breadcrumbs, $string) { |
|
| 44 | 44 | $breadcrumbs->parent('fragmentsBack'); |
| 45 | 45 | $breadcrumbs->push($string->name, action('Back\FragmentsController@edit', $string->id)); |
| 46 | 46 | }); |
@@ -48,30 +48,30 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | protected function registerUserBreadcrumbs() |
| 50 | 50 | { |
| 51 | - BreadCrumbsManager::register('administratorsListBack', function ($breadcrumbs) { |
|
| 51 | + BreadCrumbsManager::register('administratorsListBack', function($breadcrumbs) { |
|
| 52 | 52 | $breadcrumbs->push(fragment('back.administrators.title'), action('Back\AdministratorsController@index')); |
| 53 | 53 | }); |
| 54 | 54 | |
| 55 | - BreadCrumbsManager::register('administratorsCreateBack', function ($breadcrumbs) { |
|
| 55 | + BreadCrumbsManager::register('administratorsCreateBack', function($breadcrumbs) { |
|
| 56 | 56 | $breadcrumbs->parent('administratorsListBack'); |
| 57 | 57 | $breadcrumbs->push(fragment('back.administrators.new'), action('Back\AdministratorsController@create')); |
| 58 | 58 | }); |
| 59 | 59 | |
| 60 | - BreadCrumbsManager::register('administratorsEditBack', function ($breadcrumbs, $user) { |
|
| 60 | + BreadCrumbsManager::register('administratorsEditBack', function($breadcrumbs, $user) { |
|
| 61 | 61 | $breadcrumbs->parent('administratorsListBack', $user); |
| 62 | 62 | $breadcrumbs->push($user->name, action('Back\AdministratorsController@edit', $user->id)); |
| 63 | 63 | }); |
| 64 | 64 | |
| 65 | - BreadCrumbsManager::register('membersListBack', function ($breadcrumbs) { |
|
| 65 | + BreadCrumbsManager::register('membersListBack', function($breadcrumbs) { |
|
| 66 | 66 | $breadcrumbs->push(fragment('back.members.title'), action('Back\MembersController@index')); |
| 67 | 67 | }); |
| 68 | 68 | |
| 69 | - BreadCrumbsManager::register('membersNewBack', function ($breadcrumbs) { |
|
| 69 | + BreadCrumbsManager::register('membersNewBack', function($breadcrumbs) { |
|
| 70 | 70 | $breadcrumbs->parent('membersListBack'); |
| 71 | 71 | $breadcrumbs->push(fragment('back.members.new'), action('Back\MembersController@create')); |
| 72 | 72 | }); |
| 73 | 73 | |
| 74 | - BreadCrumbsManager::register('membersEditBack', function ($breadcrumbs, $user) { |
|
| 74 | + BreadCrumbsManager::register('membersEditBack', function($breadcrumbs, $user) { |
|
| 75 | 75 | $breadcrumbs->parent('membersListBack', $user); |
| 76 | 76 | $breadcrumbs->push($user->name, action('Back\MembersController@edit', $user->id)); |
| 77 | 77 | }); |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | BreadCrumbsManager::register( |
| 85 | 85 | "{$name}ListBack", |
| 86 | - function ($breadcrumbs) use ($name, $controller) { |
|
| 86 | + function($breadcrumbs) use ($name, $controller) { |
|
| 87 | 87 | $breadcrumbs->push( |
| 88 | 88 | fragment("back.{$name}.title"), |
| 89 | 89 | action("{$controller}@index") |
@@ -93,12 +93,11 @@ discard block |
||
| 93 | 93 | |
| 94 | 94 | BreadCrumbsManager::register( |
| 95 | 95 | "{$name}Back", |
| 96 | - function ($breadcrumbs, $model) use ($name, $controller) { |
|
| 96 | + function($breadcrumbs, $model) use ($name, $controller) { |
|
| 97 | 97 | $breadcrumbs->parent("{$name}ListBack"); |
| 98 | 98 | |
| 99 | 99 | $breadcrumbs->push( |
| 100 | - $model->isDraft() ? fragment("back.{$name}.new") : |
|
| 101 | - (isset($model->name) ? $model->name : ucfirst(fragment('back.change'))), |
|
| 100 | + $model->isDraft() ? fragment("back.{$name}.new") : (isset($model->name) ? $model->name : ucfirst(fragment('back.change'))), |
|
| 102 | 101 | action("{$controller}@index") |
| 103 | 102 | ); |
| 104 | 103 | } |
@@ -20,17 +20,17 @@ |
||
| 20 | 20 | */ |
| 21 | 21 | public function load($locale, $group, $namespace = null): array |
| 22 | 22 | { |
| 23 | - if (! is_null($namespace) && $namespace !== '*') { |
|
| 23 | + if (!is_null($namespace) && $namespace !== '*') { |
|
| 24 | 24 | return $this->loadNamespaced($locale, $group, $namespace); |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | - if (! $this->fragmentsAreAvailable()) { |
|
| 27 | + if (!$this->fragmentsAreAvailable()) { |
|
| 28 | 28 | return []; |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | return Cache::rememberForever( |
| 32 | 32 | "locale.fragments.{$locale}.{$group}", |
| 33 | - function () use ($group, $locale) { |
|
| 33 | + function() use ($group, $locale) { |
|
| 34 | 34 | return Fragment::getGroup($group, $locale); |
| 35 | 35 | } |
| 36 | 36 | ); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | { |
| 12 | 12 | public function flashMessage(): string |
| 13 | 13 | { |
| 14 | - if (! Session::has('flash_notification.message')) { |
|
| 14 | + if (!Session::has('flash_notification.message')) { |
|
| 15 | 15 | return ''; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | { |
| 11 | 11 | public function getRedirectsFor(Request $request): array |
| 12 | 12 | { |
| 13 | - return Redirect::getAll()->flatMap(function ($redirect) { |
|
| 13 | + return Redirect::getAll()->flatMap(function($redirect) { |
|
| 14 | 14 | return [$redirect->old_url => $redirect->new_url]; |
| 15 | 15 | })->toArray(); |
| 16 | 16 | } |
@@ -20,12 +20,12 @@ discard block |
||
| 20 | 20 | |
| 21 | 21 | $files = $request->file('file'); |
| 22 | 22 | |
| 23 | - if (! is_array($files)) { |
|
| 23 | + if (!is_array($files)) { |
|
| 24 | 24 | $files = [$files]; |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | $media = collect($files) |
| 28 | - ->map(function (UploadedFile $file) use ($model, $request) { |
|
| 28 | + ->map(function(UploadedFile $file) use ($model, $request) { |
|
| 29 | 29 | return $model |
| 30 | 30 | ->addMedia($file) |
| 31 | 31 | ->withCustomProperties(['temp' => $request->has('redactor') ? false : true]) |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | |
| 46 | 46 | $collectionName = $request->get('collectionName'); |
| 47 | 47 | |
| 48 | - $media = $model->getMedia($collectionName)->reduce(function (Collection $collection, Media $media) { |
|
| 48 | + $media = $model->getMedia($collectionName)->reduce(function(Collection $collection, Media $media) { |
|
| 49 | 49 | return $collection->push([ |
| 50 | 50 | 'thumb' => $media->getUrl('admin'), |
| 51 | 51 | 'image' => $media->getUrl('redactor'), |
@@ -58,11 +58,11 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | protected function getModelFromRequest(Request $request) |
| 60 | 60 | { |
| 61 | - if (! isset($request['model_name'])) { |
|
| 61 | + if (!isset($request['model_name'])) { |
|
| 62 | 62 | throw new Exception('No model name provided'); |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - if (! isset($request['model_id'])) { |
|
| 65 | + if (!isset($request['model_id'])) { |
|
| 66 | 66 | throw new Exception('No model id provided'); |
| 67 | 67 | } |
| 68 | 68 | |
@@ -24,8 +24,8 @@ |
||
| 24 | 24 | |
| 25 | 25 | public function index() |
| 26 | 26 | { |
| 27 | - $tags = Tag::nonDraft()->get()->reduce(function (Collection $carry, Tag $tag) { |
|
| 28 | - if (! $carry->has($tag->type)) { |
|
| 27 | + $tags = Tag::nonDraft()->get()->reduce(function(Collection $carry, Tag $tag) { |
|
| 28 | + if (!$carry->has($tag->type)) { |
|
| 29 | 29 | $carry->put($tag->type, new Collection()); |
| 30 | 30 | } |
| 31 | 31 | |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | |
| 28 | 28 | $result = Newsletter::subscribe($email); |
| 29 | 29 | |
| 30 | - if (! $result) { |
|
| 30 | + if (!$result) { |
|
| 31 | 31 | return $this->respondWithBadRequest(['message' => fragment('newsletter.subscription.result.error'), 'type' => 'error']); |
| 32 | 32 | } |
| 33 | 33 | |