@@ -60,8 +60,7 @@ |
||
| 60 | 60 | $real = $request->getRequestUri(); |
| 61 | 61 | |
| 62 | 62 | $expected = 'homepage' == $page->getSlug() ? |
| 63 | - $this->get('piedweb.page_canonical')->generatePathForHomepage() : |
|
| 64 | - $this->get('piedweb.page_canonical')->generatePathForPage($page->getRealSlug()); |
|
| 63 | + $this->get('piedweb.page_canonical')->generatePathForHomepage() : $this->get('piedweb.page_canonical')->generatePathForPage($page->getRealSlug()); |
|
| 65 | 64 | |
| 66 | 65 | if ($real != $expected) { |
| 67 | 66 | return [$request->getBasePath().$expected, 301]; |
@@ -97,7 +97,7 @@ |
||
| 97 | 97 | |
| 98 | 98 | $this->eventDispatcher->addListener( |
| 99 | 99 | KernelEvents::TERMINATE, |
| 100 | - function () use ($media) { |
|
| 100 | + function() use ($media) { |
|
| 101 | 101 | $this->generateCache($media); |
| 102 | 102 | } |
| 103 | 103 | ); |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | $pathWebP = $this->projectDir.'/public/'.$media->getRelativeDir().'/'.$filter.'/'.$media->getSlug().'.webp'; |
| 119 | 119 | $webPConverterOptions = self::$webPConverterOptions; |
| 120 | 120 | |
| 121 | - $this->pool->add(function () use ($pathJpg, $pathWebP, $webPConverterOptions, $filter) { |
|
| 121 | + $this->pool->add(function() use ($pathJpg, $pathWebP, $webPConverterOptions, $filter) { |
|
| 122 | 122 | // took 46s (vs 43s) to add liip generation in async |
| 123 | 123 | //exec($projectDir.'/bin/console liip:imagine:cache:resolve "'.$path.'" --force --filter='.$filter |
| 124 | 124 | //.' >/dev/null 2>&1 &'); |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | $source = $this->projectDir.$media->getPath(); |
| 133 | 133 | //self::createWebPStatic($destination, $source); |
| 134 | 134 | |
| 135 | - $this->pool->add(function () use ($destination, $source) { |
|
| 135 | + $this->pool->add(function() use ($destination, $source) { |
|
| 136 | 136 | self::createWebPStatic($destination, $source); |
| 137 | 137 | }); |
| 138 | 138 | } |
@@ -59,12 +59,12 @@ discard block |
||
| 59 | 59 | // Next : load this from configuration |
| 60 | 60 | $mainFields = ['h1', 'mainContent', 'mainContentIsMarkdown']; |
| 61 | 61 | $columnFields = [ |
| 62 | - 'admin.page.state.label' => ['createdAt', 'metaRobots',], |
|
| 63 | - 'admin.page.permanlien.label' => ['host', 'slug', 'parentPage',], |
|
| 64 | - 'admin.page.extended.label' => ['expand' => true, 'fields' => ['mainImage', 'name', 'title', 'excrept',]], |
|
| 65 | - 'admin.page.translations.label' => [ 'locale', 'translations',], |
|
| 66 | - 'admin.page.otherProperties.label' => ['expand' => true, 'fields' => ['otherProperties',]], |
|
| 67 | - 'admin.page.images.label' => ['images',], |
|
| 62 | + 'admin.page.state.label' => ['createdAt', 'metaRobots', ], |
|
| 63 | + 'admin.page.permanlien.label' => ['host', 'slug', 'parentPage', ], |
|
| 64 | + 'admin.page.extended.label' => ['expand' => true, 'fields' => ['mainImage', 'name', 'title', 'excrept', ]], |
|
| 65 | + 'admin.page.translations.label' => ['locale', 'translations', ], |
|
| 66 | + 'admin.page.otherProperties.label' => ['expand' => true, 'fields' => ['otherProperties', ]], |
|
| 67 | + 'admin.page.images.label' => ['images', ], |
|
| 68 | 68 | ]; |
| 69 | 69 | |
| 70 | 70 | $formMapper->with('admin.page.mainContent.label', ['class' => 'col-md-9 mainFields']); |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | $fields = $block['fields'] ?? $block; |
| 79 | 79 | $class = isset($block['expand']) ? 'expand' : ''; |
| 80 | 80 | $formMapper->with($k, ["class" => "col-md-3 columnFields ".$class]); |
| 81 | - foreach($fields as $field) { |
|
| 81 | + foreach ($fields as $field) { |
|
| 82 | 82 | $func = 'configureFormField'.ucfirst($field); |
| 83 | 83 | $this->$func($formMapper); |
| 84 | 84 | } |
@@ -138,7 +138,7 @@ |
||
| 138 | 138 | 'help_html' => true, |
| 139 | 139 | 'help' => 'admin.page.translations.help', |
| 140 | 140 | 'btn_add' => false, |
| 141 | - 'to_string_callback' => function ($entity) { |
|
| 141 | + 'to_string_callback' => function($entity) { |
|
| 142 | 142 | return $entity->getLocale() |
| 143 | 143 | ? $entity->getLocale().' ('.$entity->getSlug().')' |
| 144 | 144 | : $entity->getSlug(); // switch for getLocale |