@@ -25,13 +25,13 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | public function addFile($postValues) |
| 27 | 27 | { |
| 28 | - $destinationPath = realpath(__DIR__ . '/../../../www/files/'); |
|
| 28 | + $destinationPath = realpath(__DIR__.'/../../../www/files/'); |
|
| 29 | 29 | |
| 30 | 30 | $filename = $this->validateFilename($postValues['name'], $destinationPath); |
| 31 | - $destination = $destinationPath . '/' . $filename; |
|
| 31 | + $destination = $destinationPath.'/'.$filename; |
|
| 32 | 32 | |
| 33 | 33 | if ($postValues['error'] != '0') { |
| 34 | - throw new \Exception('Error uploading file. Error code: ' . $postValues['error']); |
|
| 34 | + throw new \Exception('Error uploading file. Error code: '.$postValues['error']); |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | if (move_uploaded_file($postValues['tmp_name'], $destination)) { |
@@ -73,8 +73,8 @@ discard block |
||
| 73 | 73 | */ |
| 74 | 74 | public function deleteFileByName($filename) |
| 75 | 75 | { |
| 76 | - $destinationPath = realpath(__DIR__ . '/../../../www/files/'); |
|
| 77 | - $destination = $destinationPath . '/' . $filename; |
|
| 76 | + $destinationPath = realpath(__DIR__.'/../../../www/files/'); |
|
| 77 | + $destination = $destinationPath.'/'.$filename; |
|
| 78 | 78 | |
| 79 | 79 | if (file_exists($destination)) { |
| 80 | 80 | $files = $this->getFiles(); |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | $cmsComponent->setParameter(CmsComponent::PARAMETER_MAIN_NAV_CLASS, CmsComponent::PARAMETER_CONFIGURATION); |
| 57 | 57 | if (isset($request::$post[CmsComponent::POST_PARAMETER_USERNAME])) { |
| 58 | 58 | $cmsComponent->storage->getUsers()->addUser($request::$post); |
| 59 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/users'); |
|
| 59 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/users'); |
|
| 60 | 60 | exit; |
| 61 | 61 | } |
| 62 | 62 | } |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | private function deleteRoute($request, $cmsComponent) |
| 69 | 69 | { |
| 70 | 70 | $cmsComponent->storage->getUsers()->deleteUserBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG]); |
| 71 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/users'); |
|
| 71 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/users'); |
|
| 72 | 72 | exit; |
| 73 | 73 | } |
| 74 | 74 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | $cmsComponent->setParameter(CmsComponent::PARAMETER_USER, $cmsComponent->storage->getUsers()->getUserBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG])); |
| 84 | 84 | if (isset($_POST[CmsComponent::POST_PARAMETER_USERNAME])) { |
| 85 | 85 | $cmsComponent->storage->getUsers()->saveUser($request::$get[CmsComponent::GET_PARAMETER_SLUG], $request::$post); |
| 86 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/users'); |
|
| 86 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/users'); |
|
| 87 | 87 | exit; |
| 88 | 88 | } |
| 89 | 89 | } |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | $cmsComponent->setParameter(CmsComponent::PARAMETER_MAIN_NAV_CLASS, CmsComponent::PARAMETER_CONFIGURATION); |
| 56 | 56 | if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE])) { |
| 57 | 57 | $cmsComponent->storage->getBricks()->addBrick($request::$post); |
| 58 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/bricks'); |
|
| 58 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/bricks'); |
|
| 59 | 59 | exit; |
| 60 | 60 | } |
| 61 | 61 | } |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | $brick = $cmsComponent->storage->getBricks()->getBrickBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG]); |
| 72 | 72 | if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE])) { |
| 73 | 73 | $cmsComponent->storage->getBricks()->saveBrick($request::$get[CmsComponent::GET_PARAMETER_SLUG], $request::$post); |
| 74 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/bricks'); |
|
| 74 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/bricks'); |
|
| 75 | 75 | exit; |
| 76 | 76 | } |
| 77 | 77 | $cmsComponent->setParameter(CmsComponent::PARAMETER_BRICK, $brick); |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | private function deleteRoute($request, $cmsComponent) |
| 85 | 85 | { |
| 86 | 86 | $cmsComponent->storage->getBricks()->deleteBrickBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG]); |
| 87 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/bricks'); |
|
| 87 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/bricks'); |
|
| 88 | 88 | exit; |
| 89 | 89 | } |
| 90 | 90 | } |
| 91 | 91 | \ No newline at end of file |
@@ -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 |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | $cmsComponent->setParameter(CmsComponent::PARAMETER_MAIN_NAV_CLASS, CmsComponent::PARAMETER_CONFIGURATION); |
| 56 | 56 | if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE])) { |
| 57 | 57 | $cmsComponent->storage->getApplicationComponents()->addApplicationComponent($request::$post); |
| 58 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/application-components'); |
|
| 58 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/application-components'); |
|
| 59 | 59 | exit; |
| 60 | 60 | } |
| 61 | 61 | } |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | $applicationComponent = $cmsComponent->storage->getApplicationComponents()->getApplicationComponentBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG]); |
| 72 | 72 | if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE])) { |
| 73 | 73 | $cmsComponent->storage->getApplicationComponents()->saveApplicationComponent($request::$get[CmsComponent::GET_PARAMETER_SLUG], $request::$post); |
| 74 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/application-components'); |
|
| 74 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/application-components'); |
|
| 75 | 75 | exit; |
| 76 | 76 | } |
| 77 | 77 | |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | private function deleteRoute($request, $cmsComponent) |
| 86 | 86 | { |
| 87 | 87 | $cmsComponent->storage->getApplicationComponents()->deleteApplicationComponentBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG]); |
| 88 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/application-components'); |
|
| 88 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/application-components'); |
|
| 89 | 89 | exit; |
| 90 | 90 | } |
| 91 | 91 | } |
| 92 | 92 | \ No newline at end of file |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | */ |
| 83 | 83 | private function config() |
| 84 | 84 | { |
| 85 | - $storagePath = __DIR__ . '/../../' . $this->storageDir; |
|
| 85 | + $storagePath = __DIR__.'/../../'.$this->storageDir; |
|
| 86 | 86 | if (realpath($storagePath) === false) { |
| 87 | 87 | initFramework(); |
| 88 | 88 | if (Repository::create($storagePath)) { |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | $repository->init(); |
| 91 | 91 | $this->repository = $repository; |
| 92 | 92 | } else { |
| 93 | - throw new \Exception('Could not create repository directory: ' . $storagePath); |
|
| 93 | + throw new \Exception('Could not create repository directory: '.$storagePath); |
|
| 94 | 94 | } |
| 95 | 95 | } else { |
| 96 | 96 | $this->repository = new Repository($storagePath); |
@@ -133,9 +133,9 @@ discard block |
||
| 133 | 133 | { |
| 134 | 134 | $documentFolderObject = DocumentFolderFactory::createDocumentFolderFromPostValues($postValues); |
| 135 | 135 | if ($postValues['path'] === '/') { |
| 136 | - $documentFolderObject->path = $postValues['path'] . $documentFolderObject->slug; |
|
| 136 | + $documentFolderObject->path = $postValues['path'].$documentFolderObject->slug; |
|
| 137 | 137 | } else { |
| 138 | - $documentFolderObject->path = $postValues['path'] . '/' . $documentFolderObject->slug; |
|
| 138 | + $documentFolderObject->path = $postValues['path'].'/'.$documentFolderObject->slug; |
|
| 139 | 139 | } |
| 140 | 140 | $this->repository->saveDocument($documentFolderObject); |
| 141 | 141 | } |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | */ |
| 150 | 150 | public function deleteDocumentFolderBySlug($slug) |
| 151 | 151 | { |
| 152 | - $path = '/' . $slug; |
|
| 152 | + $path = '/'.$slug; |
|
| 153 | 153 | $this->repository->deleteDocumentByPath($path); |
| 154 | 154 | } |
| 155 | 155 | |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | */ |
| 164 | 164 | public function getDocumentFolderBySlug($slug) |
| 165 | 165 | { |
| 166 | - $path = '/' . $slug; |
|
| 166 | + $path = '/'.$slug; |
|
| 167 | 167 | |
| 168 | 168 | return $this->repository->getDocumentByPath($path); |
| 169 | 169 | } |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | $this->resetIndex(); |
| 59 | 59 | $this->addLog('Retrieving documents to be indexed.'); |
| 60 | 60 | $documents = $this->storage->getDocuments()->getDocuments(); |
| 61 | - $this->addLog('Start Document Term Count for ' . count($documents) . ' documents'); |
|
| 61 | + $this->addLog('Start Document Term Count for '.count($documents).' documents'); |
|
| 62 | 62 | $this->createDocumentTermCount($documents); |
| 63 | 63 | $this->addLog('Start Document Term Frequency.'); |
| 64 | 64 | $this->createDocumentTermFrequency(); |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | private function addLog($string) |
| 160 | 160 | { |
| 161 | 161 | $currentTime = round(microtime(true) * 1000); |
| 162 | - $this->log .= date('d-m-Y H:i:s - ') . str_pad($string, 50, " ", STR_PAD_RIGHT) . "\t" . ($currentTime - $this->lastLog) . 'ms since last log. ' . "\t" . ($currentTime - $this->loggingStart) . 'ms since start.' . PHP_EOL; |
|
| 162 | + $this->log .= date('d-m-Y H:i:s - ').str_pad($string, 50, " ", STR_PAD_RIGHT)."\t".($currentTime - $this->lastLog).'ms since last log. '."\t".($currentTime - $this->loggingStart).'ms since start.'.PHP_EOL; |
|
| 163 | 163 | $this->lastLog = round(microtime(true) * 1000); |
| 164 | 164 | } |
| 165 | 165 | |
@@ -171,8 +171,8 @@ discard block |
||
| 171 | 171 | protected function getSearchDbHandle() |
| 172 | 172 | { |
| 173 | 173 | if ($this->searchDbHandle === null) { |
| 174 | - $path = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . $this->storageDir . DIRECTORY_SEPARATOR; |
|
| 175 | - $this->searchDbHandle = new \PDO('sqlite:' . $path . self::SEARCH_TEMP_DB); |
|
| 174 | + $path = __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.$this->storageDir.DIRECTORY_SEPARATOR; |
|
| 175 | + $this->searchDbHandle = new \PDO('sqlite:'.$path.self::SEARCH_TEMP_DB); |
|
| 176 | 176 | } |
| 177 | 177 | return $this->searchDbHandle; |
| 178 | 178 | } |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | public function replaceOldIndex() |
| 184 | 184 | { |
| 185 | 185 | $this->searchDbHandle = null; |
| 186 | - $path = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . $this->storageDir . DIRECTORY_SEPARATOR; |
|
| 187 | - rename($path . self::SEARCH_TEMP_DB, $path . 'search.db'); |
|
| 186 | + $path = __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.$this->storageDir.DIRECTORY_SEPARATOR; |
|
| 187 | + rename($path.self::SEARCH_TEMP_DB, $path.'search.db'); |
|
| 188 | 188 | } |
| 189 | 189 | } |
| 190 | 190 | \ No newline at end of file |
@@ -12,58 +12,58 @@ |
||
| 12 | 12 | |
| 13 | 13 | class DocumentRouting implements CmsRouting |
| 14 | 14 | { |
| 15 | - /** |
|
| 16 | - * DocumentRouting constructor. |
|
| 17 | - * @param $request |
|
| 18 | - * @param $relativeCmsUri |
|
| 19 | - * @param CmsComponent $cmsComponent |
|
| 20 | - */ |
|
| 21 | - public function __construct($request, $relativeCmsUri, $cmsComponent) |
|
| 22 | - { |
|
| 23 | - if ($relativeCmsUri == '/documents') { |
|
| 24 | - $cmsComponent->subTemplate = 'cms/documents'; |
|
| 25 | - $cmsComponent->setParameter(CmsComponent::PARAMETER_DOCUMENTS, $cmsComponent->storage->getDocuments()->getDocuments()); |
|
| 26 | - $cmsComponent->setParameter(CmsComponent::PARAMETER_MAIN_NAV_CLASS, CmsComponent::PARAMETER_DOCUMENTS); |
|
| 27 | - } |
|
| 28 | - $this->documentRouting($request, $relativeCmsUri, $cmsComponent); |
|
| 29 | - $this->folderRouting($request, $relativeCmsUri, $cmsComponent); |
|
| 30 | - } |
|
| 31 | - |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * @param $request |
|
| 35 | - * @param $relativeCmsUri |
|
| 36 | - * @param CmsComponent $cmsComponent |
|
| 37 | - * @throws \Exception |
|
| 38 | - */ |
|
| 39 | - private function documentRouting($request, $relativeCmsUri, $cmsComponent) |
|
| 40 | - { |
|
| 41 | - if ($relativeCmsUri == '/documents/new-document' && isset($request::$get[CmsComponent::GET_PARAMETER_PATH])) { |
|
| 15 | + /** |
|
| 16 | + * DocumentRouting constructor. |
|
| 17 | + * @param $request |
|
| 18 | + * @param $relativeCmsUri |
|
| 19 | + * @param CmsComponent $cmsComponent |
|
| 20 | + */ |
|
| 21 | + public function __construct($request, $relativeCmsUri, $cmsComponent) |
|
| 22 | + { |
|
| 23 | + if ($relativeCmsUri == '/documents') { |
|
| 24 | + $cmsComponent->subTemplate = 'cms/documents'; |
|
| 25 | + $cmsComponent->setParameter(CmsComponent::PARAMETER_DOCUMENTS, $cmsComponent->storage->getDocuments()->getDocuments()); |
|
| 26 | + $cmsComponent->setParameter(CmsComponent::PARAMETER_MAIN_NAV_CLASS, CmsComponent::PARAMETER_DOCUMENTS); |
|
| 27 | + } |
|
| 28 | + $this->documentRouting($request, $relativeCmsUri, $cmsComponent); |
|
| 29 | + $this->folderRouting($request, $relativeCmsUri, $cmsComponent); |
|
| 30 | + } |
|
| 31 | + |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * @param $request |
|
| 35 | + * @param $relativeCmsUri |
|
| 36 | + * @param CmsComponent $cmsComponent |
|
| 37 | + * @throws \Exception |
|
| 38 | + */ |
|
| 39 | + private function documentRouting($request, $relativeCmsUri, $cmsComponent) |
|
| 40 | + { |
|
| 41 | + if ($relativeCmsUri == '/documents/new-document' && isset($request::$get[CmsComponent::GET_PARAMETER_PATH])) { |
|
| 42 | 42 | $this->documentOverviewRoute($request, $cmsComponent); |
| 43 | - } elseif ($relativeCmsUri == '/documents/edit-document' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) { |
|
| 43 | + } elseif ($relativeCmsUri == '/documents/edit-document' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) { |
|
| 44 | 44 | $this->editDocumentRoute($request, $cmsComponent); |
| 45 | - } elseif ($relativeCmsUri == '/documents/get-brick' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) { |
|
| 45 | + } elseif ($relativeCmsUri == '/documents/get-brick' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) { |
|
| 46 | 46 | $this->getBrickRoute($request, $cmsComponent); |
| 47 | - } else if ($relativeCmsUri == '/documents/delete-document' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) { |
|
| 47 | + } else if ($relativeCmsUri == '/documents/delete-document' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) { |
|
| 48 | 48 | $this->deleteDocumentRoute($request, $cmsComponent); |
| 49 | - } |
|
| 50 | - } |
|
| 51 | - |
|
| 52 | - /** |
|
| 53 | - * @param $request |
|
| 54 | - * @param $relativeCmsUri |
|
| 55 | - * @param CmsComponent $cmsComponent |
|
| 56 | - */ |
|
| 57 | - private function folderRouting($request, $relativeCmsUri, $cmsComponent) |
|
| 58 | - { |
|
| 59 | - if ($relativeCmsUri == '/documents/new-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_PATH])) { |
|
| 49 | + } |
|
| 50 | + } |
|
| 51 | + |
|
| 52 | + /** |
|
| 53 | + * @param $request |
|
| 54 | + * @param $relativeCmsUri |
|
| 55 | + * @param CmsComponent $cmsComponent |
|
| 56 | + */ |
|
| 57 | + private function folderRouting($request, $relativeCmsUri, $cmsComponent) |
|
| 58 | + { |
|
| 59 | + if ($relativeCmsUri == '/documents/new-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_PATH])) { |
|
| 60 | 60 | $this->newFolderRoute($request, $cmsComponent); |
| 61 | - } else if ($relativeCmsUri == '/documents/edit-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) { |
|
| 61 | + } else if ($relativeCmsUri == '/documents/edit-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) { |
|
| 62 | 62 | $this->editFolderRoute($request, $cmsComponent); |
| 63 | - } else if ($relativeCmsUri == '/documents/delete-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) { |
|
| 63 | + } else if ($relativeCmsUri == '/documents/delete-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) { |
|
| 64 | 64 | $this->deleteFolderRoute($request, $cmsComponent); |
| 65 | - } |
|
| 66 | - } |
|
| 65 | + } |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | 68 | /** |
| 69 | 69 | * @param $request |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | if (isset($request::$get[CmsComponent::PARAMETER_DOCUMENT_TYPE])) { |
| 80 | 80 | if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE], $request::$get[CmsComponent::PARAMETER_DOCUMENT_TYPE], $request::$get[CmsComponent::GET_PARAMETER_PATH])) { |
| 81 | 81 | $cmsComponent->storage->getDocuments()->addDocument($request::$post); |
| 82 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents'); |
|
| 82 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents'); |
|
| 83 | 83 | exit; |
| 84 | 84 | } |
| 85 | 85 | $cmsComponent->setParameter(CmsComponent::PARAMETER_DOCUMENT_TYPE, $cmsComponent->storage->getDocumentTypes()->getDocumentTypeBySlug($request::$get[CmsComponent::PARAMETER_DOCUMENT_TYPE], true)); |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | } else { |
| 88 | 88 | $documentTypes = $cmsComponent->storage->getDocumentTypes()->getDocumentTypes(); |
| 89 | 89 | if (count($documentTypes) < 1) { |
| 90 | - throw new \Exception('No Document Types defined yet. <a href="' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/document-types/new">Please do so first.</a>'); |
|
| 90 | + throw new \Exception('No Document Types defined yet. <a href="'.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/document-types/new">Please do so first.</a>'); |
|
| 91 | 91 | } |
| 92 | 92 | $cmsComponent->setParameter(CmsComponent::PARAMETER_DOCUMENT_TYPES, $documentTypes); |
| 93 | 93 | } |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | $cmsComponent->setParameter(CmsComponent::PARAMETER_SMALLEST_IMAGE, $cmsComponent->storage->getImageSet()->getSmallestImageSet()->slug); |
| 105 | 105 | if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE], $request::$get[CmsComponent::GET_PARAMETER_SLUG])) { |
| 106 | 106 | $cmsComponent->storage->getDocuments()->saveDocument($request::$post); |
| 107 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents'); |
|
| 107 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents'); |
|
| 108 | 108 | exit; |
| 109 | 109 | } |
| 110 | 110 | $cmsComponent->setParameter(CmsComponent::PARAMETER_DOCUMENT, $cmsComponent->storage->getDocuments()->getDocumentBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG])); |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | private function deleteDocumentRoute($request, $cmsComponent) |
| 142 | 142 | { |
| 143 | 143 | $cmsComponent->storage->getDocuments()->deleteDocumentBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG]); |
| 144 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents'); |
|
| 144 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents'); |
|
| 145 | 145 | exit; |
| 146 | 146 | } |
| 147 | 147 | |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | $cmsComponent->setParameter(CmsComponent::PARAMETER_MAIN_NAV_CLASS, CmsComponent::PARAMETER_DOCUMENTS); |
| 156 | 156 | if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE], $request::$post[CmsComponent::GET_PARAMETER_PATH])) { |
| 157 | 157 | $cmsComponent->storage->addDocumentFolder($request::$post); |
| 158 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents'); |
|
| 158 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents'); |
|
| 159 | 159 | exit; |
| 160 | 160 | } |
| 161 | 161 | } |
@@ -174,11 +174,11 @@ discard block |
||
| 174 | 174 | array_pop($path); |
| 175 | 175 | $path = implode('/', $path); |
| 176 | 176 | |
| 177 | - $request::$get[CmsComponent::GET_PARAMETER_PATH] = '/' . $path; |
|
| 177 | + $request::$get[CmsComponent::GET_PARAMETER_PATH] = '/'.$path; |
|
| 178 | 178 | |
| 179 | 179 | if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE], $request::$post['content'])) { |
| 180 | 180 | $cmsComponent->storage->saveDocumentFolder($request::$post); |
| 181 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents'); |
|
| 181 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents'); |
|
| 182 | 182 | exit; |
| 183 | 183 | } |
| 184 | 184 | |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | private function deleteFolderRoute($request, $cmsComponent) |
| 194 | 194 | { |
| 195 | 195 | $cmsComponent->storage->deleteDocumentFolderBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG]); |
| 196 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents'); |
|
| 196 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents'); |
|
| 197 | 197 | exit; |
| 198 | 198 | } |
| 199 | 199 | } |
| 200 | 200 | \ No newline at end of file |