@@ -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']; |
@@ -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 | $documentsToProcess = array_splice($documentListSet['elements'], 0, (int) $this->settings['limit']); |
| 789 | 770 | if (empty($documentsToProcess)) { |
| 790 | 771 | $this->error = 'noRecordsMatch'; |
@@ -837,8 +818,7 @@ discard block |
||
| 837 | 818 | * |
| 838 | 819 | * @return void |
| 839 | 820 | */ |
| 840 | - protected function generateResumptionTokenForDocumentListSet(array $documentListSet, int $numShownDocuments) |
|
| 841 | - { |
|
| 821 | + protected function generateResumptionTokenForDocumentListSet(array $documentListSet, int $numShownDocuments) { |
|
| 842 | 822 | // The cursor specifies how many elements have already been returned in previous requests |
| 843 | 823 | // See http://www.openarchives.org/OAI/openarchivesprotocol.html#FlowControl |
| 844 | 824 | $currentCursor = $documentListSet['metadata']['cursor']; |
@@ -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 | |
@@ -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 | * |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | // extract collection(s) from collection parameter |
| 83 | 83 | $collections = []; |
| 84 | 84 | if ($this->searchParams['collection']) { |
| 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); |
@@ -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 |
@@ -94,12 +94,12 @@ |
||
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | // get all sortable metadata records |
| 97 | - $sortableMetadata = $this->metadataRepository->findByIsSortable(true); |
|
| 97 | + $sortableMetadata = $this->metadataRepository->findByIsSortable(TRUE); |
|
| 98 | 98 | |
| 99 | 99 | // get all metadata records to be shown in results |
| 100 | - $listedMetadata = $this->metadataRepository->findByIsListed(true); |
|
| 100 | + $listedMetadata = $this->metadataRepository->findByIsListed(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); |
@@ -68,7 +68,7 @@ |
||
| 68 | 68 | $pageGridPagination = new PageGridPagination($pageGridPaginator); |
| 69 | 69 | |
| 70 | 70 | $pagination = $this->buildSimplePagination($pageGridPagination, $pageGridPaginator); |
| 71 | - $this->view->assignMultiple([ 'pagination' => $pagination, 'paginator' => $pageGridPaginator ]); |
|
| 71 | + $this->view->assignMultiple(['pagination' => $pagination, 'paginator' => $pageGridPaginator]); |
|
| 72 | 72 | |
| 73 | 73 | $this->view->assign('docUid', $this->requestData['id']); |
| 74 | 74 | } |
@@ -23,8 +23,7 @@ |
||
| 23 | 23 | * |
| 24 | 24 | * @access public |
| 25 | 25 | */ |
| 26 | -class PageGridController extends AbstractController |
|
| 27 | -{ |
|
| 26 | +class PageGridController extends AbstractController { |
|
| 28 | 27 | /** |
| 29 | 28 | * The main method of the plugin |
| 30 | 29 | * |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | } |
| 136 | 136 | // @phpstan-ignore-next-line |
| 137 | 137 | if (!$metadata) { |
| 138 | - $this->logger->warning('No metadata found for document with UID ' . $this->document->getUid()); |
|
| 138 | + $this->logger->warning('No metadata found for document with UID '.$this->document->getUid()); |
|
| 139 | 139 | return; |
| 140 | 140 | } |
| 141 | 141 | ksort($metadata); |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | $this->parseMetadata($i, $name, $value, $metadata); |
| 174 | 174 | |
| 175 | 175 | if (is_array($metadata[$i][$name])) { |
| 176 | - $metadata[$i][$name] = array_values(array_filter($metadata[$i][$name], function ($metadataValue) { |
|
| 176 | + $metadata[$i][$name] = array_values(array_filter($metadata[$i][$name], function($metadataValue) { |
|
| 177 | 177 | return !empty($metadataValue); |
| 178 | 178 | })); |
| 179 | 179 | } |
@@ -390,7 +390,7 @@ discard block |
||
| 390 | 390 | if (empty(implode('', $value)) && $this->settings['getTitle'] && $this->document->getPartof()) { |
| 391 | 391 | $superiorTitle = AbstractDocument::getTitle($this->document->getPartof(), true); |
| 392 | 392 | if (!empty($superiorTitle)) { |
| 393 | - $metadata[$i]['title'] = ['[' . $superiorTitle . ']']; |
|
| 393 | + $metadata[$i]['title'] = ['['.$superiorTitle.']']; |
|
| 394 | 394 | } |
| 395 | 395 | } |
| 396 | 396 | } |
@@ -27,8 +27,7 @@ |
||
| 27 | 27 | * |
| 28 | 28 | * @access public |
| 29 | 29 | */ |
| 30 | -class MetadataController extends AbstractController |
|
| 31 | -{ |
|
| 30 | +class MetadataController extends AbstractController { |
|
| 32 | 31 | /** |
| 33 | 32 | * @access private |
| 34 | 33 | * @var AbstractDocument |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | protected function printMetadata(array $metadata): void |
| 156 | 156 | { |
| 157 | 157 | if ($this->useOriginalIiifManifestMetadata) { |
| 158 | - $this->view->assign('useIiif', true); |
|
| 158 | + $this->view->assign('useIiif', TRUE); |
|
| 159 | 159 | $this->view->assign('iiifData', $this->buildIiifData($metadata)); |
| 160 | 160 | } else { |
| 161 | 161 | // findBySettings also sorts entries by the `sorting` field |
@@ -245,9 +245,9 @@ discard block |
||
| 245 | 245 | if (IRI::isAbsoluteIri($value) && ($scheme == 'http' || $scheme == 'https')) { |
| 246 | 246 | //TODO: should really label be converted to empty string if equal to value? |
| 247 | 247 | $label = $value == $label ? '' : $label; |
| 248 | - $buildUrl = true; |
|
| 248 | + $buildUrl = TRUE; |
|
| 249 | 249 | } else { |
| 250 | - $buildUrl = false; |
|
| 250 | + $buildUrl = FALSE; |
|
| 251 | 251 | } |
| 252 | 252 | |
| 253 | 253 | return [ |
@@ -388,7 +388,7 @@ discard block |
||
| 388 | 388 | private function parseParentTitle(int $i, $value, array &$metadata) : void |
| 389 | 389 | { |
| 390 | 390 | if (empty(implode('', $value)) && $this->settings['getTitle'] && $this->document->getPartof()) { |
| 391 | - $superiorTitle = AbstractDocument::getTitle($this->document->getPartof(), true); |
|
| 391 | + $superiorTitle = AbstractDocument::getTitle($this->document->getPartof(), TRUE); |
|
| 392 | 392 | if (!empty($superiorTitle)) { |
| 393 | 393 | $metadata[$i]['title'] = ['[' . $superiorTitle . ']']; |
| 394 | 394 | } |
@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | } |
| 198 | 198 | } |
| 199 | 199 | // Append "IFSUB" to "ITEM_STATE" if this entry has sub-entries. |
| 200 | - $entryArray['ITEM_STATE'] = ($entryArray['ITEM_STATE'] == 'NO' ? 'IFSUB' : $entryArray['ITEM_STATE'] . 'IFSUB'); |
|
| 200 | + $entryArray['ITEM_STATE'] = ($entryArray['ITEM_STATE'] == 'NO' ? 'IFSUB' : $entryArray['ITEM_STATE'].'IFSUB'); |
|
| 201 | 201 | } |
| 202 | 202 | return $entryArray; |
| 203 | 203 | } |
@@ -309,9 +309,9 @@ discard block |
||
| 309 | 309 | $title = ''; |
| 310 | 310 | foreach ($fields as $field) { |
| 311 | 311 | if ($field == 'type') { |
| 312 | - $title .= $this->getTranslatedType($entry['type']) . ' '; |
|
| 312 | + $title .= $this->getTranslatedType($entry['type']).' '; |
|
| 313 | 313 | } else { |
| 314 | - $title .= $entry[$field] . ' '; |
|
| 314 | + $title .= $entry[$field].' '; |
|
| 315 | 315 | } |
| 316 | 316 | } |
| 317 | 317 | |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | } |
| 320 | 320 | } |
| 321 | 321 | } |
| 322 | - return $entry['label'] ?: $entry['orderlabel']; |
|
| 322 | + return $entry['label'] ? : $entry['orderlabel']; |
|
| 323 | 323 | } |
| 324 | 324 | |
| 325 | 325 | /** |
@@ -352,7 +352,7 @@ discard block |
||
| 352 | 352 | */ |
| 353 | 353 | private function sortSubMenu(array &$menu): void |
| 354 | 354 | { |
| 355 | - usort($menu[0]['_SUB_MENU'], function ($firstElement, $secondElement) { |
|
| 355 | + usort($menu[0]['_SUB_MENU'], function($firstElement, $secondElement) { |
|
| 356 | 356 | if (!empty($firstElement['orderlabel'])) { |
| 357 | 357 | return $firstElement['orderlabel'] <=> $secondElement['orderlabel']; |
| 358 | 358 | } |
@@ -23,8 +23,7 @@ |
||
| 23 | 23 | * |
| 24 | 24 | * @access public |
| 25 | 25 | */ |
| 26 | -class TableOfContentsController extends AbstractController |
|
| 27 | -{ |
|
| 26 | +class TableOfContentsController extends AbstractController { |
|
| 28 | 27 | /** |
| 29 | 28 | * This holds the active entries according to the currently selected page |
| 30 | 29 | * |
@@ -72,12 +72,12 @@ discard block |
||
| 72 | 72 | $this->getAllLogicalUnits(); |
| 73 | 73 | // Go through table of contents and create all menu entries. |
| 74 | 74 | foreach ($this->document->getCurrentDocument()->tableOfContents as $entry) { |
| 75 | - $menuArray[] = $this->getMenuEntry($entry, true); |
|
| 75 | + $menuArray[] = $this->getMenuEntry($entry, TRUE); |
|
| 76 | 76 | } |
| 77 | 77 | } else { |
| 78 | 78 | // Go through table of contents and create top-level menu entries. |
| 79 | 79 | foreach ($this->document->getCurrentDocument()->tableOfContents as $entry) { |
| 80 | - $menuArray[] = $this->getMenuEntry($entry, false); |
|
| 80 | + $menuArray[] = $this->getMenuEntry($entry, FALSE); |
|
| 81 | 81 | } |
| 82 | 82 | // Build table of contents from database. |
| 83 | 83 | $result = $this->documentRepository->getTableOfContentsFromDb($this->document->getUid(), $this->document->getPid(), $this->settings); |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | 'pagination' => '', |
| 98 | 98 | 'targetUid' => $resArray['uid'] |
| 99 | 99 | ]; |
| 100 | - $menuArray[0]['_SUB_MENU'][] = $this->getMenuEntry($entry, false); |
|
| 100 | + $menuArray[0]['_SUB_MENU'][] = $this->getMenuEntry($entry, FALSE); |
|
| 101 | 101 | } |
| 102 | 102 | } |
| 103 | 103 | } |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | * |
| 116 | 116 | * @return array HMENU array for menu entry |
| 117 | 117 | */ |
| 118 | - private function getMenuEntry(array $entry, bool $recursive = false): array |
|
| 118 | + private function getMenuEntry(array $entry, bool $recursive = FALSE): array |
|
| 119 | 119 | { |
| 120 | 120 | $entry = $this->resolveMenuEntry($entry); |
| 121 | 121 | |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | } |
| 176 | 176 | // Build sub-menu if available and called recursively. |
| 177 | 177 | if ( |
| 178 | - $recursive === true |
|
| 178 | + $recursive === TRUE |
|
| 179 | 179 | && !empty($entry['children']) |
| 180 | 180 | ) { |
| 181 | 181 | // Build sub-menu only if one of the following conditions apply: |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | if (in_array($child['id'], $this->activeEntries)) { |
| 194 | 194 | $entryArray['ITEM_STATE'] = 'ACT'; |
| 195 | 195 | } |
| 196 | - $entryArray['_SUB_MENU'][] = $this->getMenuEntry($child, true); |
|
| 196 | + $entryArray['_SUB_MENU'][] = $this->getMenuEntry($child, TRUE); |
|
| 197 | 197 | } |
| 198 | 198 | } |
| 199 | 199 | // Append "IFSUB" to "ITEM_STATE" if this entry has sub-entries. |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | if ($library) { |
| 76 | 76 | $feedMeta['copyright'] = $library->getLabel(); |
| 77 | 77 | } else { |
| 78 | - $this->logger->error('Failed to fetch label of selected library with "' . $this->settings['library'] . '"'); |
|
| 78 | + $this->logger->error('Failed to fetch label of selected library with "'.$this->settings['library'].'"'); |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | if ( |
@@ -95,12 +95,12 @@ discard block |
||
| 95 | 95 | ) { |
| 96 | 96 | $superiorTitle = AbstractDocument::getTitle($document->getPartof(), true); |
| 97 | 97 | if (!empty($superiorTitle)) { |
| 98 | - $title .= '[' . $superiorTitle . ']'; |
|
| 98 | + $title .= '['.$superiorTitle.']'; |
|
| 99 | 99 | } |
| 100 | 100 | } |
| 101 | 101 | // Get title of document. |
| 102 | 102 | if (!empty($document->getTitle())) { |
| 103 | - $title .= ' ' . $document->getTitle(); |
|
| 103 | + $title .= ' '.$document->getTitle(); |
|
| 104 | 104 | } |
| 105 | 105 | // Set default title if empty. |
| 106 | 106 | if (empty($title)) { |
@@ -108,13 +108,13 @@ discard block |
||
| 108 | 108 | } |
| 109 | 109 | // Append volume information. |
| 110 | 110 | if (!empty($document->getVolume())) { |
| 111 | - $title .= ', ' . LocalizationUtility::translate('volume', 'dlf') . ' ' . $document->getVolume(); |
|
| 111 | + $title .= ', '.LocalizationUtility::translate('volume', 'dlf').' '.$document->getVolume(); |
|
| 112 | 112 | } |
| 113 | 113 | // Is this document new or updated? |
| 114 | 114 | if ($document->getCrdate() == $document->getTstamp()) { |
| 115 | - $title = LocalizationUtility::translate('plugins.feeds.new', 'dlf') . ' ' . trim($title); |
|
| 115 | + $title = LocalizationUtility::translate('plugins.feeds.new', 'dlf').' '.trim($title); |
|
| 116 | 116 | } else { |
| 117 | - $title = LocalizationUtility::translate('plugins.feeds.update', 'dlf') . ' ' . trim($title); |
|
| 117 | + $title = LocalizationUtility::translate('plugins.feeds.update', 'dlf').' '.trim($title); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | $document->setTitle($title); |
@@ -24,8 +24,7 @@ |
||
| 24 | 24 | * |
| 25 | 25 | * @access public |
| 26 | 26 | */ |
| 27 | -class FeedsController extends AbstractController |
|
| 28 | -{ |
|
| 27 | +class FeedsController extends AbstractController { |
|
| 29 | 28 | |
| 30 | 29 | /** |
| 31 | 30 | * @access protected |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | || GeneralUtility::inList($this->settings['collections'], $requestData['collection']) |
| 85 | 85 | ) { |
| 86 | 86 | |
| 87 | - $documents = $this->documentRepository->findAllByCollectionsLimited(GeneralUtility::intExplode(',', $requestData['collection'], true), $this->settings['limit']); |
|
| 87 | + $documents = $this->documentRepository->findAllByCollectionsLimited(GeneralUtility::intExplode(',', $requestData['collection'], TRUE), $this->settings['limit']); |
|
| 88 | 88 | |
| 89 | 89 | foreach ($documents as $document) { |
| 90 | 90 | |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | if ((empty($document->getTitle()) || !empty($this->settings['prependSuperiorTitle'])) |
| 94 | 94 | && !empty($document->getPartof()) |
| 95 | 95 | ) { |
| 96 | - $superiorTitle = AbstractDocument::getTitle($document->getPartof(), true); |
|
| 96 | + $superiorTitle = AbstractDocument::getTitle($document->getPartof(), TRUE); |
|
| 97 | 97 | if (!empty($superiorTitle)) { |
| 98 | 98 | $title .= '[' . $superiorTitle . ']'; |
| 99 | 99 | } |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | $this->renderToolByName('renderSearchInDocumentTool'); |
| 100 | 100 | break; |
| 101 | 101 | default: |
| 102 | - $this->logger->warning('Incorrect tool configuration: "' . $this->settings['tools'] . '". Tool "' . $tool . '" does not exist.'); |
|
| 102 | + $this->logger->warning('Incorrect tool configuration: "'.$this->settings['tools'].'". Tool "'.$tool.'" does not exist.'); |
|
| 103 | 103 | } |
| 104 | 104 | } |
| 105 | 105 | } |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | } |
| 263 | 263 | break; |
| 264 | 264 | } else { |
| 265 | - $this->logger->warning('File not found in fileGrp "' . $fileGrp . '"'); |
|
| 265 | + $this->logger->warning('File not found in fileGrp "'.$fileGrp.'"'); |
|
| 266 | 266 | } |
| 267 | 267 | } |
| 268 | 268 | return $image; |
@@ -346,7 +346,7 @@ discard block |
||
| 346 | 346 | empty($firstPageLink) |
| 347 | 347 | && empty($secondPageLink) |
| 348 | 348 | ) { |
| 349 | - $this->logger->warning('File not found in fileGrps "' . $this->extConf['fileGrpDownload'] . '"'); |
|
| 349 | + $this->logger->warning('File not found in fileGrps "'.$this->extConf['fileGrpDownload'].'"'); |
|
| 350 | 350 | } |
| 351 | 351 | |
| 352 | 352 | if (!empty($firstPageLink)) { |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | } |
| 385 | 385 | } |
| 386 | 386 | if (empty($workLink)) { |
| 387 | - $this->logger->warning('File not found in fileGrps "' . $this->extConf['fileGrpDownload'] . '"'); |
|
| 387 | + $this->logger->warning('File not found in fileGrps "'.$this->extConf['fileGrpDownload'].'"'); |
|
| 388 | 388 | } |
| 389 | 389 | return $workLink; |
| 390 | 390 | } |
@@ -24,8 +24,7 @@ |
||
| 24 | 24 | * |
| 25 | 25 | * @access public |
| 26 | 26 | */ |
| 27 | -class ToolboxController extends AbstractController |
|
| 28 | -{ |
|
| 27 | +class ToolboxController extends AbstractController { |
|
| 29 | 28 | |
| 30 | 29 | /** |
| 31 | 30 | * @access private |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | private function renderToolByName(string $tool): void |
| 118 | 118 | { |
| 119 | 119 | $this->$tool(); |
| 120 | - $this->view->assign($tool, true); |
|
| 120 | + $this->view->assign($tool, TRUE); |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | /** |
@@ -139,12 +139,12 @@ discard block |
||
| 139 | 139 | |
| 140 | 140 | $annotationContainers = $this->currentDocument->physicalStructureInfo[$this->currentDocument->physicalStructure[$this->requestData['page']]]['annotationContainers']; |
| 141 | 141 | if ( |
| 142 | - $annotationContainers != null |
|
| 142 | + $annotationContainers != NULL |
|
| 143 | 143 | && count($annotationContainers) > 0 |
| 144 | 144 | ) { |
| 145 | - $this->view->assign('annotationTool', true); |
|
| 145 | + $this->view->assign('annotationTool', TRUE); |
|
| 146 | 146 | } else { |
| 147 | - $this->view->assign('annotationTool', false); |
|
| 147 | + $this->view->assign('annotationTool', FALSE); |
|
| 148 | 148 | } |
| 149 | 149 | } |
| 150 | 150 | |
@@ -193,10 +193,10 @@ discard block |
||
| 193 | 193 | $this->setPage(); |
| 194 | 194 | |
| 195 | 195 | if (!$this->isFullTextEmpty()) { |
| 196 | - $this->view->assign('fulltext', true); |
|
| 196 | + $this->view->assign('fulltext', TRUE); |
|
| 197 | 197 | $this->view->assign('activateFullTextInitially', MathUtility::forceIntegerInRange($this->settings['activateFullTextInitially'], 0, 1, 0)); |
| 198 | 198 | } else { |
| 199 | - $this->view->assign('fulltext', false); |
|
| 199 | + $this->view->assign('fulltext', FALSE); |
|
| 200 | 200 | } |
| 201 | 201 | } |
| 202 | 202 | |
@@ -281,7 +281,7 @@ discard block |
||
| 281 | 281 | // Set parent element for initialization. |
| 282 | 282 | $parentContainer = !empty($this->settings['parentContainer']) ? $this->settings['parentContainer'] : '.tx-dlf-imagemanipulationtool'; |
| 283 | 283 | |
| 284 | - $this->view->assign('imageManipulation', true); |
|
| 284 | + $this->view->assign('imageManipulation', TRUE); |
|
| 285 | 285 | $this->view->assign('parentContainer', $parentContainer); |
| 286 | 286 | } |
| 287 | 287 | |
@@ -444,7 +444,7 @@ discard block |
||
| 444 | 444 | { |
| 445 | 445 | $id = $this->document->getUid(); |
| 446 | 446 | |
| 447 | - if ($id !== null && $id > 0) { |
|
| 447 | + if ($id !== NULL && $id > 0) { |
|
| 448 | 448 | // we found the document uid |
| 449 | 449 | return (string) $id; |
| 450 | 450 | } else { |
@@ -119,11 +119,11 @@ discard block |
||
| 119 | 119 | $fulltext['mimetype'] = $file['mimeType']; |
| 120 | 120 | break; |
| 121 | 121 | } else { |
| 122 | - $this->logger->notice('No full-text file found for page "' . $page . '" in fileGrp "' . $fileGrpFulltext . '"'); |
|
| 122 | + $this->logger->notice('No full-text file found for page "'.$page.'" in fileGrp "'.$fileGrpFulltext.'"'); |
|
| 123 | 123 | } |
| 124 | 124 | } |
| 125 | 125 | if (empty($fulltext)) { |
| 126 | - $this->logger->notice('No full-text file found for page "' . $page . '" in fileGrps "' . $this->extConf['fileGrpFulltext'] . '"'); |
|
| 126 | + $this->logger->notice('No full-text file found for page "'.$page.'" in fileGrps "'.$this->extConf['fileGrpFulltext'].'"'); |
|
| 127 | 127 | } |
| 128 | 128 | return $fulltext; |
| 129 | 129 | } |
@@ -141,13 +141,13 @@ discard block |
||
| 141 | 141 | $viewerConfiguration = '$(document).ready(function() { |
| 142 | 142 | if (dlfUtils.exists(dlfViewer)) { |
| 143 | 143 | tx_dlf_viewer = new dlfViewer({ |
| 144 | - controls: ["' . implode('", "', $this->controls) . '"], |
|
| 145 | - div: "' . $this->settings['elementId'] . '", |
|
| 146 | - progressElementId: "' . $this->settings['progressElementId'] . '", |
|
| 147 | - images: ' . json_encode($this->images) . ', |
|
| 148 | - fulltexts: ' . json_encode($this->fulltexts) . ', |
|
| 149 | - annotationContainers: ' . json_encode($this->annotationContainers) . ', |
|
| 150 | - useInternalProxy: ' . ($this->settings['useInternalProxy'] ? 1 : 0) . ' |
|
| 144 | + controls: ["' . implode('", "', $this->controls).'"], |
|
| 145 | + div: "' . $this->settings['elementId'].'", |
|
| 146 | + progressElementId: "' . $this->settings['progressElementId'].'", |
|
| 147 | + images: ' . json_encode($this->images).', |
|
| 148 | + fulltexts: ' . json_encode($this->fulltexts).', |
|
| 149 | + annotationContainers: ' . json_encode($this->annotationContainers).', |
|
| 150 | + useInternalProxy: ' . ($this->settings['useInternalProxy'] ? 1 : 0).' |
|
| 151 | 151 | }); |
| 152 | 152 | } |
| 153 | 153 | });'; |
@@ -240,11 +240,11 @@ discard block |
||
| 240 | 240 | } |
| 241 | 241 | break; |
| 242 | 242 | } else { |
| 243 | - $this->logger->notice('No image file found for page "' . $page . '" in fileGrp "' . $fileGrpImages . '"'); |
|
| 243 | + $this->logger->notice('No image file found for page "'.$page.'" in fileGrp "'.$fileGrpImages.'"'); |
|
| 244 | 244 | } |
| 245 | 245 | } |
| 246 | 246 | if (empty($image)) { |
| 247 | - $this->logger->warning('No image file found for page "' . $page . '" in fileGrps "' . $this->extConf['fileGrpImages'] . '"'); |
|
| 247 | + $this->logger->warning('No image file found for page "'.$page.'" in fileGrps "'.$this->extConf['fileGrpImages'].'"'); |
|
| 248 | 248 | } |
| 249 | 249 | return $image; |
| 250 | 250 | } |
@@ -25,8 +25,7 @@ |
||
| 25 | 25 | * |
| 26 | 26 | * @access public |
| 27 | 27 | */ |
| 28 | -class PageViewController extends AbstractController |
|
| 29 | -{ |
|
| 28 | +class PageViewController extends AbstractController { |
|
| 30 | 29 | /** |
| 31 | 30 | * @access protected |
| 32 | 31 | * @var array Holds the controls to add to the map |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | if ($iiif instanceof ManifestInterface) { |
| 171 | 171 | $canvas = $iiif->getContainedResourceById($canvasId); |
| 172 | 172 | /* @var $canvas \Ubl\Iiif\Presentation\Common\Model\Resources\CanvasInterface */ |
| 173 | - if ($canvas != null && !empty($canvas->getPossibleTextAnnotationContainers(Motivation::PAINTING))) { |
|
| 173 | + if ($canvas != NULL && !empty($canvas->getPossibleTextAnnotationContainers(Motivation::PAINTING))) { |
|
| 174 | 174 | $annotationContainers = []; |
| 175 | 175 | /* |
| 176 | 176 | * TODO Analyzing the annotations on the server side requires loading the annotation lists / pages |
@@ -180,11 +180,11 @@ discard block |
||
| 180 | 180 | * On the other hand, server connections are potentially better than client connections. Downloading annotation lists |
| 181 | 181 | */ |
| 182 | 182 | foreach ($canvas->getPossibleTextAnnotationContainers(Motivation::PAINTING) as $annotationContainer) { |
| 183 | - if (($textAnnotations = $annotationContainer->getTextAnnotations(Motivation::PAINTING)) != null) { |
|
| 183 | + if (($textAnnotations = $annotationContainer->getTextAnnotations(Motivation::PAINTING)) != NULL) { |
|
| 184 | 184 | foreach ($textAnnotations as $annotation) { |
| 185 | 185 | if ( |
| 186 | 186 | $annotation->getBody()->getFormat() == 'text/plain' |
| 187 | - && $annotation->getBody()->getChars() != null |
|
| 187 | + && $annotation->getBody()->getChars() != NULL |
|
| 188 | 188 | ) { |
| 189 | 189 | $annotationListData = []; |
| 190 | 190 | $annotationListData['uri'] = $annotationContainer->getId(); |