@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | $bricks = $cmsComponent->storage->getBricks()->getBricks(); |
| 57 | 57 | if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE])) { |
| 58 | 58 | $cmsComponent->storage->getDocumentTypes()->addDocumentType($request::$post); |
| 59 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/document-types'); |
|
| 59 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/document-types'); |
|
| 60 | 60 | exit; |
| 61 | 61 | } |
| 62 | 62 | $cmsComponent->setParameter(CmsComponent::PARAMETER_BRICKS, $bricks); |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | $bricks = $cmsComponent->storage->getBricks()->getBricks(); |
| 75 | 75 | if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE])) { |
| 76 | 76 | $cmsComponent->storage->getDocumentTypes()->saveDocumentType($request::$get[CmsComponent::GET_PARAMETER_SLUG], $request::$post); |
| 77 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/document-types'); |
|
| 77 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/document-types'); |
|
| 78 | 78 | exit; |
| 79 | 79 | } |
| 80 | 80 | $cmsComponent->setParameter(CmsComponent::PARAMETER_DOCUMENT_TYPE, $documentType); |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | private function deleteRoute($request, $cmsComponent) |
| 89 | 89 | { |
| 90 | 90 | $cmsComponent->storage->getDocumentTypes()->deleteDocumentTypeBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG]); |
| 91 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/document-types'); |
|
| 91 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/document-types'); |
|
| 92 | 92 | exit; |
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | 95 | \ No newline at end of file |
@@ -89,11 +89,11 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | private function tokenizeBrick($brick, $brickSlug) |
| 91 | 91 | { |
| 92 | - $fields = $brick->fields; |
|
| 92 | + $fields = $brick->fields; |
|
| 93 | 93 | $brickDefinition = $this->storage->getBricks()->getBrickBySlug($brick->type); |
| 94 | 94 | foreach ($fields as $fieldName => $field) { |
| 95 | 95 | $fieldType = $this->getFieldType($fieldName, $brickDefinition); |
| 96 | - $this->tokenizeField($field, $brickSlug . '__' . $fieldName, $fieldType); |
|
| 96 | + $this->tokenizeField($field, $brickSlug.'__'.$fieldName, $fieldType); |
|
| 97 | 97 | } |
| 98 | 98 | } |
| 99 | 99 | |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | { |
| 102 | 102 | $dynamicBricks = $this->document->dynamicBricks; |
| 103 | 103 | foreach ($dynamicBricks as $key => $brick) { |
| 104 | - $this->tokenizeBrick($brick, 'dynamicBricks__' . $brick->type . $key); |
|
| 104 | + $this->tokenizeBrick($brick, 'dynamicBricks__'.$brick->type.$key); |
|
| 105 | 105 | } |
| 106 | 106 | } |
| 107 | 107 | |
@@ -154,6 +154,6 @@ discard block |
||
| 154 | 154 | } |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - throw new \Exception('Unknown field type for field' . $fieldName . ' in document ' . $this->document->path); |
|
| 157 | + throw new \Exception('Unknown field type for field'.$fieldName.' in document '.$this->document->path); |
|
| 158 | 158 | } |
| 159 | 159 | } |
| 160 | 160 | \ No newline at end of file |