@@ -26,8 +26,7 @@ |
||
26 | 26 | * |
27 | 27 | * @internal |
28 | 28 | */ |
29 | -class MigrateSettings implements UpgradeWizardInterface |
|
30 | -{ |
|
29 | +class MigrateSettings implements UpgradeWizardInterface { |
|
31 | 30 | |
32 | 31 | /** |
33 | 32 | * Return the identifier for this wizard |
@@ -108,11 +108,11 @@ discard block |
||
108 | 108 | |
109 | 109 | // exit if at least one update statement is not successful |
110 | 110 | if (!((bool) $updateResult)) { |
111 | - return false; |
|
111 | + return FALSE; |
|
112 | 112 | } |
113 | 113 | } |
114 | 114 | |
115 | - return true; |
|
115 | + return TRUE; |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | */ |
127 | 127 | public function updateNecessary(): bool |
128 | 128 | { |
129 | - $oldSettingsFound = false; |
|
129 | + $oldSettingsFound = FALSE; |
|
130 | 130 | |
131 | 131 | $connection = GeneralUtility::makeInstance(ConnectionPool::class)->getConnectionForTable('tt_content'); |
132 | 132 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | // Update the found record sets |
145 | 145 | while ($record = $statement->fetchAssociative()) { |
146 | 146 | $oldSettingsFound = $this->checkForOldSettings($record['pi_flexform']); |
147 | - if ($oldSettingsFound === true) { |
|
147 | + if ($oldSettingsFound === TRUE) { |
|
148 | 148 | // We found at least one field to be updated --> break here |
149 | 149 | break; |
150 | 150 | } |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | |
188 | 188 | foreach ($fields as $field) { |
189 | 189 | // change the index attribute if it doesn't start with 'settings.' yet |
190 | - if (strpos($field['index'], 'settings.') === false) { |
|
190 | + if (strpos($field['index'], 'settings.') === FALSE) { |
|
191 | 191 | $field['index'] = 'settings.' . $field['index']; |
192 | 192 | } |
193 | 193 | } |
@@ -190,9 +190,9 @@ discard block |
||
190 | 190 | $queryBuilder->createNamedParameter('', \PDO::PARAM_STR) |
191 | 191 | ), |
192 | 192 | $queryBuilder->expr()->comparison( |
193 | - 'CAST(CAST(' . $queryBuilder->quoteIdentifier($this->fieldsToMigrate[$table]) . ' AS DECIMAL) AS CHAR)', |
|
193 | + 'CAST(CAST('.$queryBuilder->quoteIdentifier($this->fieldsToMigrate[$table]).' AS DECIMAL) AS CHAR)', |
|
194 | 194 | ExpressionBuilder::NEQ, |
195 | - 'CAST(' . $queryBuilder->quoteIdentifier($this->fieldsToMigrate[$table]) . ' AS CHAR)' |
|
195 | + 'CAST('.$queryBuilder->quoteIdentifier($this->fieldsToMigrate[$table]).' AS CHAR)' |
|
196 | 196 | ) |
197 | 197 | ) |
198 | 198 | ->orderBy('uid') |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | } |
206 | 206 | } catch (Exception $e) { |
207 | 207 | throw new \RuntimeException( |
208 | - 'Database query failed. Error was: ' . $e->getPrevious()->getMessage(), |
|
208 | + 'Database query failed. Error was: '.$e->getPrevious()->getMessage(), |
|
209 | 209 | 1511950673 |
210 | 210 | ); |
211 | 211 | } |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class); |
272 | 272 | |
273 | 273 | $fileUid = null; |
274 | - $sourcePath = Environment::getPublicPath() . '/' . $fieldItem; |
|
274 | + $sourcePath = Environment::getPublicPath().'/'.$fieldItem; |
|
275 | 275 | |
276 | 276 | // maybe the file was already moved, so check if the original file still exists |
277 | 277 | if (file_exists($sourcePath)) { |
@@ -171,8 +171,7 @@ |
||
171 | 171 | * |
172 | 172 | * @throws \RuntimeException |
173 | 173 | */ |
174 | - protected function getRecordsFromTable(bool $countOnly = false) |
|
175 | - { |
|
174 | + protected function getRecordsFromTable(bool $countOnly = false) { |
|
176 | 175 | $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class); |
177 | 176 | $allResults = []; |
178 | 177 | $numResults = 0; |
@@ -105,11 +105,11 @@ discard block |
||
105 | 105 | public function updateNecessary(): bool |
106 | 106 | { |
107 | 107 | /** @var int */ |
108 | - $numRecords = $this->getRecordsFromTable(true); |
|
108 | + $numRecords = $this->getRecordsFromTable(TRUE); |
|
109 | 109 | if ($numRecords > 0) { |
110 | - return true; |
|
110 | + return TRUE; |
|
111 | 111 | } |
112 | - return false; |
|
112 | + return FALSE; |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
@@ -145,16 +145,16 @@ discard block |
||
145 | 145 | */ |
146 | 146 | public function executeUpdate(): bool |
147 | 147 | { |
148 | - $result = true; |
|
148 | + $result = TRUE; |
|
149 | 149 | try { |
150 | 150 | /** @var int */ |
151 | - $numRecords = $this->getRecordsFromTable(true); |
|
151 | + $numRecords = $this->getRecordsFromTable(TRUE); |
|
152 | 152 | if ($numRecords > 0) { |
153 | 153 | $this->performUpdate(); |
154 | 154 | } |
155 | 155 | } catch (\Exception $e) { |
156 | 156 | // If something goes wrong, migrateField() logs an error |
157 | - $result = false; |
|
157 | + $result = FALSE; |
|
158 | 158 | } |
159 | 159 | return $result; |
160 | 160 | } |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | * |
172 | 172 | * @throws \RuntimeException |
173 | 173 | */ |
174 | - protected function getRecordsFromTable(bool $countOnly = false) |
|
174 | + protected function getRecordsFromTable(bool $countOnly = FALSE) |
|
175 | 175 | { |
176 | 176 | $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class); |
177 | 177 | $allResults = []; |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | ->orderBy('uid') |
199 | 199 | ->execute() |
200 | 200 | ->fetchAllAssociative(); |
201 | - if ($countOnly === true) { |
|
201 | + if ($countOnly === TRUE) { |
|
202 | 202 | $numResults += count($result); |
203 | 203 | } else { |
204 | 204 | $allResults[$table] = $result; |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | } |
212 | 212 | } |
213 | 213 | |
214 | - if ($countOnly === true) { |
|
214 | + if ($countOnly === TRUE) { |
|
215 | 215 | return $numResults; |
216 | 216 | } else { |
217 | 217 | return $allResults; |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | */ |
229 | 229 | protected function performUpdate(): bool |
230 | 230 | { |
231 | - $result = true; |
|
231 | + $result = TRUE; |
|
232 | 232 | |
233 | 233 | try { |
234 | 234 | $storages = GeneralUtility::makeInstance(StorageRepository::class)->findAll(); |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | } |
242 | 242 | } |
243 | 243 | } catch (\Exception $e) { |
244 | - $result = false; |
|
244 | + $result = FALSE; |
|
245 | 245 | } |
246 | 246 | |
247 | 247 | return $result; |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | $storageUid = (int) $this->storage->getUid(); |
271 | 271 | $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class); |
272 | 272 | |
273 | - $fileUid = null; |
|
273 | + $fileUid = NULL; |
|
274 | 274 | $sourcePath = Environment::getPublicPath() . '/' . $fieldItem; |
275 | 275 | |
276 | 276 | // maybe the file was already moved, so check if the original file still exists |
@@ -22,8 +22,7 @@ discard block |
||
22 | 22 | * |
23 | 23 | * @access public |
24 | 24 | */ |
25 | -class DocumentTypeProvider extends AbstractProvider |
|
26 | -{ |
|
25 | +class DocumentTypeProvider extends AbstractProvider { |
|
27 | 26 | /** |
28 | 27 | * Construct the instance |
29 | 28 | * |
@@ -31,8 +30,7 @@ discard block |
||
31 | 30 | * |
32 | 31 | * @return void |
33 | 32 | */ |
34 | - public function __construct() |
|
35 | - { |
|
33 | + public function __construct() { |
|
36 | 34 | $this->expressionLanguageProviders = [ |
37 | 35 | DocumentTypeFunctionProvider::class |
38 | 36 | ]; |
@@ -116,12 +116,10 @@ |
||
116 | 116 | { |
117 | 117 | return new ExpressionFunction( |
118 | 118 | 'getDocumentType', |
119 | - function() |
|
120 | - { |
|
119 | + function() { |
|
121 | 120 | // Not implemented, we only use the evaluator |
122 | 121 | }, |
123 | - function($arguments, $cPid) |
|
124 | - { |
|
122 | + function($arguments, $cPid) { |
|
125 | 123 | /** @var RequestWrapper $requestWrapper */ |
126 | 124 | $requestWrapper = $arguments['request']; |
127 | 125 | $queryParams = $requestWrapper->getQueryParams(); |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | if ($this->document) { |
180 | 180 | $doc = AbstractDocument::getInstance($this->document->getLocation(), ['storagePid' => $pid], true); |
181 | 181 | } else { |
182 | - $this->logger->error('Invalid UID "' . $requestData['id'] . '" or PID "' . $pid . '" for document loading'); |
|
182 | + $this->logger->error('Invalid UID "'.$requestData['id'].'" or PID "'.$pid.'" for document loading'); |
|
183 | 183 | } |
184 | 184 | } elseif (GeneralUtility::isValidUrl($requestData['id'])) { |
185 | 185 | $doc = AbstractDocument::getInstance($requestData['id'], ['storagePid' => $pid], true); |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | } |
194 | 194 | $this->document->setLocation($requestData['id']); |
195 | 195 | } else { |
196 | - $this->logger->error('Invalid location given "' . $requestData['id'] . '" for document loading'); |
|
196 | + $this->logger->error('Invalid location given "'.$requestData['id'].'" for document loading'); |
|
197 | 197 | } |
198 | 198 | } |
199 | 199 | if ($this->document !== null && $doc !== null) { |
@@ -206,11 +206,11 @@ discard block |
||
206 | 206 | if ($doc !== null) { |
207 | 207 | $this->document->setCurrentDocument($doc); |
208 | 208 | } else { |
209 | - $this->logger->error('Failed to load document with record ID "' . $requestData['recordId'] . '"'); |
|
209 | + $this->logger->error('Failed to load document with record ID "'.$requestData['recordId'].'"'); |
|
210 | 210 | } |
211 | 211 | } |
212 | 212 | } else { |
213 | - $this->logger->error('Empty UID or invalid PID "' . $pid . '" for document loading'); |
|
213 | + $this->logger->error('Empty UID or invalid PID "'.$pid.'" for document loading'); |
|
214 | 214 | } |
215 | 215 | } |
216 | 216 |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | |
140 | 140 | // Load document with current plugin parameters. |
141 | 141 | $this->loadDocument($queryParams['tx_dlf'], $cPid); |
142 | - if (!isset($this->document) || $this->document->getCurrentDocument() === null) { |
|
142 | + if (!isset($this->document) || $this->document->getCurrentDocument() === NULL) { |
|
143 | 143 | return $type; |
144 | 144 | } |
145 | 145 | |
@@ -172,18 +172,18 @@ discard block |
||
172 | 172 | // Try to get document format from database |
173 | 173 | if (!empty($requestData['id'])) { |
174 | 174 | $this->initializeRepositories($pid); |
175 | - $doc = null; |
|
175 | + $doc = NULL; |
|
176 | 176 | if (MathUtility::canBeInterpretedAsInteger($requestData['id'])) { |
177 | 177 | // find document from repository by uid |
178 | 178 | $this->document = $this->documentRepository->findOneByIdAndSettings((int) $requestData['id'], ['storagePid' => $pid]); |
179 | 179 | if ($this->document) { |
180 | - $doc = AbstractDocument::getInstance($this->document->getLocation(), ['storagePid' => $pid], true); |
|
180 | + $doc = AbstractDocument::getInstance($this->document->getLocation(), ['storagePid' => $pid], TRUE); |
|
181 | 181 | } else { |
182 | 182 | $this->logger->error('Invalid UID "' . $requestData['id'] . '" or PID "' . $pid . '" for document loading'); |
183 | 183 | } |
184 | 184 | } elseif (GeneralUtility::isValidUrl($requestData['id'])) { |
185 | - $doc = AbstractDocument::getInstance($requestData['id'], ['storagePid' => $pid], true); |
|
186 | - if ($doc !== null) { |
|
185 | + $doc = AbstractDocument::getInstance($requestData['id'], ['storagePid' => $pid], TRUE); |
|
186 | + if ($doc !== NULL) { |
|
187 | 187 | if ($doc->recordId) { |
188 | 188 | $this->document = $this->documentRepository->findOneByRecordId($doc->recordId); |
189 | 189 | } |
@@ -196,14 +196,14 @@ discard block |
||
196 | 196 | $this->logger->error('Invalid location given "' . $requestData['id'] . '" for document loading'); |
197 | 197 | } |
198 | 198 | } |
199 | - if ($this->document !== null && $doc !== null) { |
|
199 | + if ($this->document !== NULL && $doc !== NULL) { |
|
200 | 200 | $this->document->setCurrentDocument($doc); |
201 | 201 | } |
202 | 202 | } elseif (!empty($requestData['recordId'])) { |
203 | 203 | $this->document = $this->documentRepository->findOneByRecordId($requestData['recordId']); |
204 | - if ($this->document !== null) { |
|
205 | - $doc = AbstractDocument::getInstance($this->document->getLocation(), ['storagePid' => $pid], true); |
|
206 | - if ($doc !== null) { |
|
204 | + if ($this->document !== NULL) { |
|
205 | + $doc = AbstractDocument::getInstance($this->document->getLocation(), ['storagePid' => $pid], TRUE); |
|
206 | + if ($doc !== NULL) { |
|
207 | 207 | $this->document->setCurrentDocument($doc); |
208 | 208 | } else { |
209 | 209 | $this->logger->error('Failed to load document with record ID "' . $requestData['recordId'] . '"'); |
@@ -18,15 +18,13 @@ |
||
18 | 18 | use TYPO3\CMS\Core\Pagination\PaginatorInterface; |
19 | 19 | |
20 | 20 | |
21 | -final class PageGridPagination implements PaginationInterface |
|
22 | -{ |
|
21 | +final class PageGridPagination implements PaginationInterface { |
|
23 | 22 | /** |
24 | 23 | * @var PageGridPaginator |
25 | 24 | */ |
26 | 25 | protected $paginator; |
27 | 26 | |
28 | - public function __construct(PaginatorInterface $paginator) |
|
29 | - { |
|
27 | + public function __construct(PaginatorInterface $paginator) { |
|
30 | 28 | // @phpstan-ignore-next-line |
31 | 29 | $this->paginator = $paginator; |
32 | 30 | } |
@@ -36,12 +36,12 @@ discard block |
||
36 | 36 | $previousPage = (int) (($this->paginator->getCurrentPageNumber() - 1) * $this->paginator->getPublicItemsPerPage()) - ($this->paginator->getPublicItemsPerPage() - 1); |
37 | 37 | |
38 | 38 | if ($previousPage > $this->paginator->getNumberOfPages()) { |
39 | - return null; |
|
39 | + return NULL; |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | return $previousPage >= $this->getFirstPageNumber() |
43 | 43 | ? $previousPage |
44 | - : null |
|
44 | + : NULL |
|
45 | 45 | ; |
46 | 46 | } |
47 | 47 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | return $nextPage <= $this->paginator->getNumberOfPages() |
53 | 53 | ? $nextPage |
54 | - : null |
|
54 | + : NULL |
|
55 | 55 | ; |
56 | 56 | } |
57 | 57 |
@@ -16,8 +16,7 @@ |
||
16 | 16 | |
17 | 17 | use TYPO3\CMS\Core\Pagination\AbstractPaginator; |
18 | 18 | |
19 | -final class PageGridPaginator extends AbstractPaginator |
|
20 | -{ |
|
19 | +final class PageGridPaginator extends AbstractPaginator { |
|
21 | 20 | /** |
22 | 21 | * @var array |
23 | 22 | */ |
@@ -250,10 +250,10 @@ discard block |
||
250 | 250 | if ($root->item(0) instanceof \DOMNode) { |
251 | 251 | $mets = $xml->saveXML($root->item(0)); |
252 | 252 | } else { |
253 | - $this->logger->error('No METS part found in document with location "' . $record['location'] . '"'); |
|
253 | + $this->logger->error('No METS part found in document with location "'.$record['location'].'"'); |
|
254 | 254 | } |
255 | 255 | } else { |
256 | - $this->logger->error('Could not load XML file from "' . $record['location'] . '"'); |
|
256 | + $this->logger->error('Could not load XML file from "'.$record['location'].'"'); |
|
257 | 257 | } |
258 | 258 | return $mets; |
259 | 259 | } |
@@ -421,7 +421,7 @@ discard block |
||
421 | 421 | $pageSettings = $this->configurationManager->getConfiguration($this->configurationManager::CONFIGURATION_TYPE_FULL_TYPOSCRIPT); |
422 | 422 | $storagePid = $pageSettings["plugin."]["tx_dlf."]["persistence."]["storagePid"]; |
423 | 423 | if ($storagePid > 0) { |
424 | - $this->logger->notice('No records found with PID ' . $storagePid); |
|
424 | + $this->logger->notice('No records found with PID '.$storagePid); |
|
425 | 425 | } else { |
426 | 426 | $this->logger->notice('No records found'); |
427 | 427 | } |
@@ -504,7 +504,7 @@ discard block |
||
504 | 504 | if (!empty($resArray)) { |
505 | 505 | // check, if all required fields are available for a given identifier |
506 | 506 | foreach ($details['requiredFields'] as $required) { |
507 | - $methodName = 'get' . GeneralUtility::underscoredToUpperCamelCase($required); |
|
507 | + $methodName = 'get'.GeneralUtility::underscoredToUpperCamelCase($required); |
|
508 | 508 | if (empty($resArray->$methodName())) { |
509 | 509 | // Skip metadata formats whose requirements are not met. |
510 | 510 | continue 2; |
@@ -610,9 +610,9 @@ discard block |
||
610 | 610 | $resArray = $result->fetchAssociative(); |
611 | 611 | if ($resArray) { |
612 | 612 | if ($resArray['index_query'] != "") { |
613 | - $solrQuery .= '(' . $resArray['index_query'] . ')'; |
|
613 | + $solrQuery .= '('.$resArray['index_query'].')'; |
|
614 | 614 | } else { |
615 | - $solrQuery .= 'collection:' . '"' . $resArray['index_name'] . '"'; |
|
615 | + $solrQuery .= 'collection:'.'"'.$resArray['index_name'].'"'; |
|
616 | 616 | } |
617 | 617 | } else { |
618 | 618 | $this->error = 'noSetHierarchy'; |
@@ -624,7 +624,7 @@ discard block |
||
624 | 624 | } |
625 | 625 | // Check for required fields. |
626 | 626 | foreach ($this->formats[$this->parameters['metadataPrefix']]['requiredFields'] as $required) { |
627 | - $solrQuery .= ' NOT ' . $required . ':""'; |
|
627 | + $solrQuery .= ' NOT '.$required.':""'; |
|
628 | 628 | } |
629 | 629 | // toplevel="true" is always required |
630 | 630 | $solrQuery .= ' AND toplevel:true'; |
@@ -638,7 +638,7 @@ discard block |
||
638 | 638 | return $documentSet; |
639 | 639 | } |
640 | 640 | |
641 | - $solrQuery .= ' AND timestamp:[' . $from . ' TO ' . $until . ']'; |
|
641 | + $solrQuery .= ' AND timestamp:['.$from.' TO '.$until.']'; |
|
642 | 642 | |
643 | 643 | $solr = Solr::getInstance($this->settings['solrcore']); |
644 | 644 | if (!$solr->ready) { |
@@ -729,7 +729,7 @@ discard block |
||
729 | 729 | */ |
730 | 730 | private function getDate(string $dateType) |
731 | 731 | { |
732 | - return strptime($this->parameters[$dateType], '%Y-%m-%dT%H:%M:%SZ') ?: strptime($this->parameters[$dateType], '%Y-%m-%d'); |
|
732 | + return strptime($this->parameters[$dateType], '%Y-%m-%dT%H:%M:%SZ') ? : strptime($this->parameters[$dateType], '%Y-%m-%d'); |
|
733 | 733 | } |
734 | 734 | |
735 | 735 | /** |
@@ -752,7 +752,7 @@ discard block |
||
752 | 752 | $date['tm_mday'], |
753 | 753 | $date['tm_year'] + 1900 |
754 | 754 | ); |
755 | - return date("Y-m-d", $timestamp) . 'T' . date("H:i:s", $timestamp) . $end; |
|
755 | + return date("Y-m-d", $timestamp).'T'.date("H:i:s", $timestamp).$end; |
|
756 | 756 | } |
757 | 757 | |
758 | 758 | /** |
@@ -865,7 +865,7 @@ discard block |
||
865 | 865 | $resumptionTokenInfo['cursor'] = $currentCursor; |
866 | 866 | $resumptionTokenInfo['completeListSize'] = $documentListSet['metadata']['completeListSize']; |
867 | 867 | $expireDateTime = new \DateTime(); |
868 | - $expireDateTime->add(new \DateInterval('PT' . $this->settings['expired'] . 'S')); |
|
868 | + $expireDateTime->add(new \DateInterval('PT'.$this->settings['expired'].'S')); |
|
869 | 869 | $resumptionTokenInfo['expired'] = $expireDateTime; |
870 | 870 | |
871 | 871 | $omitResumptionToken = $currentCursor === 0 && $numShownDocuments >= $documentListSet['metadata']['completeListSize']; |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | */ |
242 | 242 | protected function getMetsData(array $record) |
243 | 243 | { |
244 | - $mets = null; |
|
244 | + $mets = NULL; |
|
245 | 245 | // Load METS file. |
246 | 246 | $xml = new \DOMDocument(); |
247 | 247 | if ($xml->load($record['location'])) { |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | } else { |
323 | 323 | // No resumption token found or resumption token expired. |
324 | 324 | $this->error = 'badResumptionToken'; |
325 | - return null; |
|
325 | + return NULL; |
|
326 | 326 | } |
327 | 327 | } |
328 | 328 | |
@@ -583,7 +583,7 @@ discard block |
||
583 | 583 | protected function verbListSets() |
584 | 584 | { |
585 | 585 | // It is required to set a oai_name inside the collection record to be shown in oai-pmh plugin. |
586 | - $this->settings['hideEmptyOaiNames'] = true; |
|
586 | + $this->settings['hideEmptyOaiNames'] = TRUE; |
|
587 | 587 | |
588 | 588 | $oaiSets = $this->collectionRepository->findCollectionsBySettings($this->settings); |
589 | 589 | |
@@ -844,7 +844,7 @@ discard block |
||
844 | 844 | $currentCursor = $documentListSet['metadata']['cursor']; |
845 | 845 | |
846 | 846 | if (count($documentListSet['elements']) !== 0) { |
847 | - $resumptionToken = uniqid('', false); |
|
847 | + $resumptionToken = uniqid('', FALSE); |
|
848 | 848 | |
849 | 849 | $documentListSet['metadata']['cursor'] += $numShownDocuments; |
850 | 850 |
@@ -26,8 +26,7 @@ discard block |
||
26 | 26 | * |
27 | 27 | * @access public |
28 | 28 | */ |
29 | -class OaiPmhController extends AbstractController |
|
30 | -{ |
|
29 | +class OaiPmhController extends AbstractController { |
|
31 | 30 | /** |
32 | 31 | * @access protected |
33 | 32 | * @var TokenRepository |
@@ -41,8 +40,7 @@ discard block |
||
41 | 40 | * |
42 | 41 | * @return void |
43 | 42 | */ |
44 | - public function injectTokenRepository(TokenRepository $tokenRepository) |
|
45 | - { |
|
43 | + public function injectTokenRepository(TokenRepository $tokenRepository) { |
|
46 | 44 | $this->tokenRepository = $tokenRepository; |
47 | 45 | } |
48 | 46 | |
@@ -59,8 +57,7 @@ discard block |
||
59 | 57 | * |
60 | 58 | * @return void |
61 | 59 | */ |
62 | - public function injectCollectionRepository(CollectionRepository $collectionRepository) |
|
63 | - { |
|
60 | + public function injectCollectionRepository(CollectionRepository $collectionRepository) { |
|
64 | 61 | $this->collectionRepository = $collectionRepository; |
65 | 62 | } |
66 | 63 | |
@@ -77,8 +74,7 @@ discard block |
||
77 | 74 | * |
78 | 75 | * @return void |
79 | 76 | */ |
80 | - public function injectLibraryRepository(LibraryRepository $libraryRepository) |
|
81 | - { |
|
77 | + public function injectLibraryRepository(LibraryRepository $libraryRepository) { |
|
82 | 78 | $this->libraryRepository = $libraryRepository; |
83 | 79 | } |
84 | 80 | |
@@ -89,8 +85,7 @@ discard block |
||
89 | 85 | * |
90 | 86 | * @return void |
91 | 87 | */ |
92 | - public function initializeAction() |
|
93 | - { |
|
88 | + public function initializeAction() { |
|
94 | 89 | $this->request->setFormat('xml'); |
95 | 90 | } |
96 | 91 | |
@@ -135,8 +130,7 @@ discard block |
||
135 | 130 | * |
136 | 131 | * @return void |
137 | 132 | */ |
138 | - protected function deleteExpiredTokens() |
|
139 | - { |
|
133 | + protected function deleteExpiredTokens() { |
|
140 | 134 | // Delete expired resumption tokens. |
141 | 135 | $this->tokenRepository->deleteExpiredTokens($this->settings['expired']); |
142 | 136 | } |
@@ -148,8 +142,7 @@ discard block |
||
148 | 142 | * |
149 | 143 | * @return void |
150 | 144 | */ |
151 | - protected function getUrlParams() |
|
152 | - { |
|
145 | + protected function getUrlParams() { |
|
153 | 146 | $allowedParams = [ |
154 | 147 | 'verb', |
155 | 148 | 'identifier', |
@@ -179,8 +172,7 @@ discard block |
||
179 | 172 | * |
180 | 173 | * @return array The mapped metadata array |
181 | 174 | */ |
182 | - private function getDublinCoreData(array $record) |
|
183 | - { |
|
175 | + private function getDublinCoreData(array $record) { |
|
184 | 176 | $metadata = []; |
185 | 177 | |
186 | 178 | $metadata[] = ['dc:identifier' => $record['record_id']]; |
@@ -222,8 +214,7 @@ discard block |
||
222 | 214 | * |
223 | 215 | * @return void |
224 | 216 | */ |
225 | - private function addDublinCoreData(&$metadata, $key, $value) |
|
226 | - { |
|
217 | + private function addDublinCoreData(&$metadata, $key, $value) { |
|
227 | 218 | if (!empty($value)) { |
228 | 219 | $metadata[] = [$key => $value]; |
229 | 220 | } |
@@ -239,8 +230,7 @@ discard block |
||
239 | 230 | * |
240 | 231 | * @return string The fetched METS XML |
241 | 232 | */ |
242 | - protected function getMetsData(array $record) |
|
243 | - { |
|
233 | + protected function getMetsData(array $record) { |
|
244 | 234 | $mets = null; |
245 | 235 | // Load METS file. |
246 | 236 | $xml = new \DOMDocument(); |
@@ -265,8 +255,7 @@ discard block |
||
265 | 255 | * |
266 | 256 | * @return void |
267 | 257 | */ |
268 | - public function mainAction() |
|
269 | - { |
|
258 | + public function mainAction() { |
|
270 | 259 | // Get allowed GET and POST variables. |
271 | 260 | $this->getUrlParams(); |
272 | 261 | |
@@ -333,8 +322,7 @@ discard block |
||
333 | 322 | * |
334 | 323 | * @return void |
335 | 324 | */ |
336 | - protected function verbGetRecord() |
|
337 | - { |
|
325 | + protected function verbGetRecord() { |
|
338 | 326 | if (count($this->parameters) !== 3 || empty($this->parameters['metadataPrefix']) || empty($this->parameters['identifier'])) { |
339 | 327 | $this->error = 'badArgument'; |
340 | 328 | return; |
@@ -386,8 +374,7 @@ discard block |
||
386 | 374 | * |
387 | 375 | * @return void |
388 | 376 | */ |
389 | - protected function verbIdentify() |
|
390 | - { |
|
377 | + protected function verbIdentify() { |
|
391 | 378 | $library = $this->libraryRepository->findByUid($this->settings['library']); |
392 | 379 | |
393 | 380 | $oaiIdentifyInfo = []; |
@@ -436,8 +423,7 @@ discard block |
||
436 | 423 | * |
437 | 424 | * @return void |
438 | 425 | */ |
439 | - protected function verbListIdentifiers() |
|
440 | - { |
|
426 | + protected function verbListIdentifiers() { |
|
441 | 427 | // If we have a resumption token we can continue our work |
442 | 428 | if (!empty($this->parameters['resumptionToken'])) { |
443 | 429 | // "resumptionToken" is an exclusive argument. |
@@ -491,8 +477,7 @@ discard block |
||
491 | 477 | * |
492 | 478 | * @return void |
493 | 479 | */ |
494 | - protected function verbListMetadataFormats() |
|
495 | - { |
|
480 | + protected function verbListMetadataFormats() { |
|
496 | 481 | $resArray = []; |
497 | 482 | // check for the optional "identifier" parameter |
498 | 483 | if (isset($this->parameters['identifier'])) { |
@@ -524,8 +509,7 @@ discard block |
||
524 | 509 | * |
525 | 510 | * @return void |
526 | 511 | */ |
527 | - protected function verbListRecords() |
|
528 | - { |
|
512 | + protected function verbListRecords() { |
|
529 | 513 | // Check for invalid arguments. |
530 | 514 | if (!empty($this->parameters['resumptionToken'])) { |
531 | 515 | // "resumptionToken" is an exclusive argument. |
@@ -580,8 +564,7 @@ discard block |
||
580 | 564 | * |
581 | 565 | * @return void |
582 | 566 | */ |
583 | - protected function verbListSets() |
|
584 | - { |
|
567 | + protected function verbListSets() { |
|
585 | 568 | // It is required to set a oai_name inside the collection record to be shown in oai-pmh plugin. |
586 | 569 | $this->settings['hideEmptyOaiNames'] = true; |
587 | 570 | |
@@ -727,8 +710,7 @@ discard block |
||
727 | 710 | * |
728 | 711 | * @return array|false |
729 | 712 | */ |
730 | - private function getDate(string $dateType) |
|
731 | - { |
|
713 | + private function getDate(string $dateType) { |
|
732 | 714 | return strptime($this->parameters[$dateType], '%Y-%m-%dT%H:%M:%SZ') ?: strptime($this->parameters[$dateType], '%Y-%m-%d'); |
733 | 715 | } |
734 | 716 | |
@@ -783,8 +765,7 @@ discard block |
||
783 | 765 | * |
784 | 766 | * @return array of enriched records |
785 | 767 | */ |
786 | - protected function generateOutputForDocumentList(array $documentListSet) |
|
787 | - { |
|
768 | + protected function generateOutputForDocumentList(array $documentListSet) { |
|
788 | 769 | // check whether any result elements are available |
789 | 770 | if (empty($documentListSet) || empty($documentListSet['elements'])) { |
790 | 771 | $this->error = 'noRecordsMatch'; |
@@ -839,8 +820,7 @@ discard block |
||
839 | 820 | * |
840 | 821 | * @return void |
841 | 822 | */ |
842 | - protected function generateResumptionTokenForDocumentListSet(array $documentListSet, int $numShownDocuments) |
|
843 | - { |
|
823 | + protected function generateResumptionTokenForDocumentListSet(array $documentListSet, int $numShownDocuments) { |
|
844 | 824 | // The cursor specifies how many elements have already been returned in previous requests |
845 | 825 | // See http://www.openarchives.org/OAI/openarchivesprotocol.html#FlowControl |
846 | 826 | $currentCursor = $documentListSet['metadata']['cursor']; |
@@ -21,8 +21,7 @@ |
||
21 | 21 | * |
22 | 22 | * @access public |
23 | 23 | */ |
24 | -class StatisticsController extends AbstractController |
|
25 | -{ |
|
24 | +class StatisticsController extends AbstractController { |
|
26 | 25 | /** |
27 | 26 | * The main method of the plugin |
28 | 27 | * |
@@ -24,8 +24,7 @@ |
||
24 | 24 | * |
25 | 25 | * @access public |
26 | 26 | */ |
27 | -class ListViewController extends AbstractController |
|
28 | -{ |
|
27 | +class ListViewController extends AbstractController { |
|
29 | 28 | /** |
30 | 29 | * @access protected |
31 | 30 | * @var CollectionRepository |
@@ -91,15 +91,15 @@ |
||
91 | 91 | $currentPage = $this->requestData['page'] ?? 1; |
92 | 92 | |
93 | 93 | // get all sortable metadata records |
94 | - $sortableMetadata = $this->metadataRepository->findByIsSortable(true); |
|
94 | + $sortableMetadata = $this->metadataRepository->findByIsSortable(TRUE); |
|
95 | 95 | |
96 | 96 | // get all metadata records to be shown in results |
97 | - $listedMetadata = $this->metadataRepository->findByIsListed(true); |
|
97 | + $listedMetadata = $this->metadataRepository->findByIsListed(TRUE); |
|
98 | 98 | |
99 | 99 | // get all indexed metadata fields |
100 | - $indexedMetadata = $this->metadataRepository->findByIndexIndexed(true); |
|
100 | + $indexedMetadata = $this->metadataRepository->findByIndexIndexed(TRUE); |
|
101 | 101 | |
102 | - $solrResults = null; |
|
102 | + $solrResults = NULL; |
|
103 | 103 | $numResults = 0; |
104 | 104 | if (is_array($this->searchParams) && !empty($this->searchParams)) { |
105 | 105 | $solrResults = $this->documentRepository->findSolrByCollections($collections, $this->settings, $this->searchParams, $listedMetadata, $indexedMetadata); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | // extract collection(s) from collection parameter |
83 | 83 | $collections = []; |
84 | 84 | if (is_array($this->searchParams) && array_key_exists('collection', $this->searchParams)) { |
85 | - foreach(explode(',', $this->searchParams['collection']) as $collectionEntry) { |
|
85 | + foreach (explode(',', $this->searchParams['collection']) as $collectionEntry) { |
|
86 | 86 | $collections[] = $this->collectionRepository->findByUid((int) $collectionEntry); |
87 | 87 | } |
88 | 88 | } |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | $simplePagination = new SimplePagination($solrPaginator); |
114 | 114 | |
115 | 115 | $pagination = $this->buildSimplePagination($simplePagination, $solrPaginator); |
116 | - $this->view->assignMultiple([ 'pagination' => $pagination, 'paginator' => $solrPaginator ]); |
|
116 | + $this->view->assignMultiple(['pagination' => $pagination, 'paginator' => $solrPaginator]); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | $this->view->assign('viewData', $this->viewData); |