@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | $simplePagination = new SimplePagination($solrPaginator); |
168 | 168 | |
169 | 169 | $pagination = $this->buildSimplePagination($simplePagination, $solrPaginator); |
170 | - $this->view->assignMultiple([ 'pagination' => $pagination, 'paginator' => $solrPaginator ]); |
|
170 | + $this->view->assignMultiple(['pagination' => $pagination, 'paginator' => $solrPaginator]); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | $this->view->assign('viewData', $this->viewData); |
@@ -219,20 +219,20 @@ discard block |
||
219 | 219 | foreach ($collections as $collection) { |
220 | 220 | $solr_query = ''; |
221 | 221 | if ($collection->getIndexSearch() != '') { |
222 | - $solr_query .= '(' . $collection->getIndexSearch() . ')'; |
|
222 | + $solr_query .= '('.$collection->getIndexSearch().')'; |
|
223 | 223 | } else { |
224 | - $solr_query .= 'collection:("' . Solr::escapeQuery($collection->getIndexName()) . '")'; |
|
224 | + $solr_query .= 'collection:("'.Solr::escapeQuery($collection->getIndexName()).'")'; |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | // virtual collection might yield documents, that are not toplevel true or partof anything |
228 | 228 | if ($collection->getIndexSearch()) { |
229 | 229 | $params['query'] = $solr_query; |
230 | 230 | } else { |
231 | - $params['query'] = $solr_query . ' AND partof:0 AND toplevel:true'; |
|
231 | + $params['query'] = $solr_query.' AND partof:0 AND toplevel:true'; |
|
232 | 232 | } |
233 | 233 | $partOfNothing = $solr->searchRaw($params); |
234 | 234 | |
235 | - $params['query'] = $solr_query . ' AND NOT partof:0 AND toplevel:true'; |
|
235 | + $params['query'] = $solr_query.' AND NOT partof:0 AND toplevel:true'; |
|
236 | 236 | $partOfSomething = $solr->searchRaw($params); |
237 | 237 | |
238 | 238 | $collectionInfo = []; |
@@ -53,7 +53,7 @@ |
||
53 | 53 | $metadata['video_duration'] = [$videoDuration]; |
54 | 54 | } |
55 | 55 | |
56 | - $metadata['duration'] = $metadata['video_duration'] ?: $metadata['audio_duration'] ?: []; |
|
56 | + $metadata['duration'] = $metadata['video_duration'] ? : $metadata['audio_duration'] ? : []; |
|
57 | 57 | |
58 | 58 | if ($useExternalApis) { |
59 | 59 | // TODO? |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | } |
124 | 124 | return ' '; |
125 | 125 | } |
126 | - return htmlspecialchars((string) $attributes['CONTENT']) . ' '; |
|
126 | + return htmlspecialchars((string) $attributes['CONTENT']).' '; |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | /** |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | */ |
138 | 138 | private function getCoordinates(\SimpleXMLElement $attributes): string |
139 | 139 | { |
140 | - return (string) $attributes['HPOS'] . ' ' . (string) $attributes['VPOS'] . ' ' . (string) $attributes['WIDTH'] . ' ' . (string) $attributes['HEIGHT']; |
|
140 | + return (string) $attributes['HPOS'].' '.(string) $attributes['VPOS'].' '.(string) $attributes['WIDTH'].' '.(string) $attributes['HEIGHT']; |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | /** |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | public function __construct(string $viaf, RequestFactory $requestFactory) |
66 | 66 | { |
67 | 67 | $this->logger = GeneralUtility::makeInstance(LogManager::class)->getLogger(static::class); |
68 | - $this->viafUrl = 'http://viaf.org/viaf/' . $viaf; |
|
68 | + $this->viafUrl = 'http://viaf.org/viaf/'.$viaf; |
|
69 | 69 | $this->requestFactory = $requestFactory; |
70 | 70 | } |
71 | 71 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | try { |
96 | 96 | $response = $this->requestFactory->request($url); |
97 | 97 | } catch (\Exception $e) { |
98 | - $this->logger->warning('Could not fetch data from URL "' . $url . '". Error: ' . $e->getMessage() . '.'); |
|
98 | + $this->logger->warning('Could not fetch data from URL "'.$url.'". Error: '.$e->getMessage().'.'); |
|
99 | 99 | return false; |
100 | 100 | } |
101 | 101 | return $response->getBody()->getContents(); |
@@ -110,6 +110,6 @@ discard block |
||
110 | 110 | **/ |
111 | 111 | private function getApiEndpoint(): string |
112 | 112 | { |
113 | - return $this->viafUrl . '/' . $this->endpoint; |
|
113 | + return $this->viafUrl.'/'.$this->endpoint; |
|
114 | 114 | } |
115 | 115 | } |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | try { |
112 | 112 | $response = $this->requestFactory->request($url); |
113 | 113 | } catch (\Exception $e) { |
114 | - $this->logger->warning('Could not fetch data from URL "' . $url . '". Error: ' . $e->getMessage() . '.'); |
|
114 | + $this->logger->warning('Could not fetch data from URL "'.$url.'". Error: '.$e->getMessage().'.'); |
|
115 | 115 | return false; |
116 | 116 | } |
117 | 117 | return $response->getBody()->getContents(); |
@@ -126,10 +126,10 @@ discard block |
||
126 | 126 | **/ |
127 | 127 | private function getApiEndpoint(): string |
128 | 128 | { |
129 | - $url = 'https://' . $this->level . '.' . self::HOSTNAME; |
|
130 | - $url .= '/v' . self::VERSION . '/'; |
|
129 | + $url = 'https://'.$this->level.'.'.self::HOSTNAME; |
|
130 | + $url .= '/v'.self::VERSION.'/'; |
|
131 | 131 | $url .= $this->orcid; |
132 | - $url .= '/' . $this->endpoint; |
|
132 | + $url .= '/'.$this->endpoint; |
|
133 | 133 | return $url; |
134 | 134 | } |
135 | 135 | } |
@@ -653,16 +653,16 @@ discard block |
||
653 | 653 | if ($resArray['format'] > 0 && !empty($resArray['xpath_sorting'])) { |
654 | 654 | $values = $iiifResource->jsonPath($resArray['xpath_sorting']); |
655 | 655 | if (is_string($values)) { |
656 | - $metadata[$resArray['index_name'] . '_sorting'][0] = [trim((string) $values)]; |
|
656 | + $metadata[$resArray['index_name'].'_sorting'][0] = [trim((string) $values)]; |
|
657 | 657 | } elseif ($values instanceof JSONPath && is_array($values->data()) && count($values->data()) > 1) { |
658 | 658 | $metadata[$resArray['index_name']] = []; |
659 | 659 | foreach ($values->data() as $value) { |
660 | - $metadata[$resArray['index_name'] . '_sorting'][0] = trim((string) $value); |
|
660 | + $metadata[$resArray['index_name'].'_sorting'][0] = trim((string) $value); |
|
661 | 661 | } |
662 | 662 | } |
663 | 663 | } |
664 | - if (empty($metadata[$resArray['index_name'] . '_sorting'][0])) { |
|
665 | - $metadata[$resArray['index_name'] . '_sorting'][0] = $metadata[$resArray['index_name']][0]; |
|
664 | + if (empty($metadata[$resArray['index_name'].'_sorting'][0])) { |
|
665 | + $metadata[$resArray['index_name'].'_sorting'][0] = $metadata[$resArray['index_name']][0]; |
|
666 | 666 | } |
667 | 667 | } |
668 | 668 | } |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | } |
773 | 773 | } |
774 | 774 | } else { |
775 | - $this->logger->warning('Invalid structure resource @id "' . $id . '"'); |
|
775 | + $this->logger->warning('Invalid structure resource @id "'.$id.'"'); |
|
776 | 776 | return $rawText; |
777 | 777 | } |
778 | 778 | $this->rawTextArray[$id] = $rawText; |
@@ -817,7 +817,7 @@ discard block |
||
817 | 817 | return true; |
818 | 818 | } |
819 | 819 | } |
820 | - $this->logger->error('Could not load IIIF manifest from "' . $location . '"'); |
|
820 | + $this->logger->error('Could not load IIIF manifest from "'.$location.'"'); |
|
821 | 821 | return false; |
822 | 822 | } |
823 | 823 |
@@ -87,7 +87,7 @@ |
||
87 | 87 | $this->xEndPosition = $highlight['lrx']; |
88 | 88 | $this->yBeginPosition = $highlight['uly']; |
89 | 89 | $this->yEndPosition = $highlight['lry']; |
90 | - $this->id = $this->xBeginPosition . '_' . $this->yBeginPosition; |
|
90 | + $this->id = $this->xBeginPosition.'_'.$this->yBeginPosition; |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | { |
128 | 128 | // Get next available core name if none given. |
129 | 129 | if (empty($core)) { |
130 | - $core = 'dlfCore' . self::getNextCoreNumber(); |
|
130 | + $core = 'dlfCore'.self::getNextCoreNumber(); |
|
131 | 131 | } |
132 | 132 | // Get Solr service instance. |
133 | 133 | $solr = self::getInstance($core); |
@@ -217,13 +217,13 @@ discard block |
||
217 | 217 | ->execute(); |
218 | 218 | |
219 | 219 | while ($resArray = $result->fetchAssociative()) { |
220 | - $fields[] = $resArray['index_name'] . '_' . ($resArray['index_tokenized'] ? 't' : 'u') . ($resArray['index_stored'] ? 's' : 'u') . 'i'; |
|
220 | + $fields[] = $resArray['index_name'].'_'.($resArray['index_tokenized'] ? 't' : 'u').($resArray['index_stored'] ? 's' : 'u').'i'; |
|
221 | 221 | } |
222 | 222 | |
223 | 223 | // Check if queried field is valid. |
224 | 224 | $splitQuery = explode(':', $query, 2); |
225 | 225 | if (in_array($splitQuery[0], $fields)) { |
226 | - $query = $splitQuery[0] . ':(' . self::escapeQuery(trim($splitQuery[1], '()')) . ')'; |
|
226 | + $query = $splitQuery[0].':('.self::escapeQuery(trim($splitQuery[1], '()')).')'; |
|
227 | 227 | } else { |
228 | 228 | $query = self::escapeQuery($query); |
229 | 229 | } |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | { |
331 | 331 | $number = max($number, 0); |
332 | 332 | // Check if core already exists. |
333 | - $solr = self::getInstance('dlfCore' . $number); |
|
333 | + $solr = self::getInstance('dlfCore'.$number); |
|
334 | 334 | if (!$solr->ready) { |
335 | 335 | return $number; |
336 | 336 | } else { |
@@ -388,7 +388,7 @@ discard block |
||
388 | 388 | $parameters['start'] = 0; |
389 | 389 | $parameters['rows'] = $this->limit; |
390 | 390 | // Calculate cache identifier. |
391 | - $cacheIdentifier = Helper::digest($this->core . print_r(array_merge($this->params, $parameters), true)); |
|
391 | + $cacheIdentifier = Helper::digest($this->core.print_r(array_merge($this->params, $parameters), true)); |
|
392 | 392 | $cache = GeneralUtility::makeInstance(CacheManager::class)->getCache('tx_dlf_solr'); |
393 | 393 | $resultSet = []; |
394 | 394 | $entry = $cache->get($cacheIdentifier); |
@@ -520,12 +520,12 @@ discard block |
||
520 | 520 | */ |
521 | 521 | public function __get(string $var) |
522 | 522 | { |
523 | - $method = 'magicGet' . ucfirst($var); |
|
523 | + $method = 'magicGet'.ucfirst($var); |
|
524 | 524 | if ( |
525 | 525 | !property_exists($this, $var) |
526 | 526 | || !method_exists($this, $method) |
527 | 527 | ) { |
528 | - $this->logger->warning('There is no getter function for property "' . $var . '"'); |
|
528 | + $this->logger->warning('There is no getter function for property "'.$var.'"'); |
|
529 | 529 | return null; |
530 | 530 | } else { |
531 | 531 | return $this->$method(); |
@@ -558,12 +558,12 @@ discard block |
||
558 | 558 | */ |
559 | 559 | public function __set(string $var, $value): void |
560 | 560 | { |
561 | - $method = 'magicSet' . ucfirst($var); |
|
561 | + $method = 'magicSet'.ucfirst($var); |
|
562 | 562 | if ( |
563 | 563 | !property_exists($this, $var) |
564 | 564 | || !method_exists($this, $method) |
565 | 565 | ) { |
566 | - $this->logger->warning('There is no setter function for property "' . $var . '"'); |
|
566 | + $this->logger->warning('There is no setter function for property "'.$var.'"'); |
|
567 | 567 | } else { |
568 | 568 | $this->$method($value); |
569 | 569 | } |
@@ -603,7 +603,7 @@ discard block |
||
603 | 603 | 'scheme' => $this->config['scheme'], |
604 | 604 | 'host' => $this->config['host'], |
605 | 605 | 'port' => $this->config['port'], |
606 | - 'path' => '/' . $this->config['path'], |
|
606 | + 'path' => '/'.$this->config['path'], |
|
607 | 607 | 'core' => $core, |
608 | 608 | 'username' => $this->config['username'], |
609 | 609 | 'password' => $this->config['password'] |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | // in which case metadata of toplevel entry isn't yet filled. |
221 | 221 | if (empty($document['metadata'])) { |
222 | 222 | $document['metadata'] = $this->fetchToplevelMetadataFromSolr([ |
223 | - 'query' => 'uid:' . $document['uid'], |
|
223 | + 'query' => 'uid:'.$document['uid'], |
|
224 | 224 | 'start' => 0, |
225 | 225 | 'rows' => 1, |
226 | 226 | 'sort' => ['score' => 'desc'], |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | if (empty($document['title']) && $document['partOf'] > 0) { |
232 | 232 | $superiorTitle = AbstractDocument::getTitle($document['partOf'], true); |
233 | 233 | if (!empty($superiorTitle)) { |
234 | - $document['title'] = '[' . $superiorTitle . ']'; |
|
234 | + $document['title'] = '['.$superiorTitle.']'; |
|
235 | 235 | } |
236 | 236 | } |
237 | 237 | } |
@@ -366,13 +366,13 @@ discard block |
||
366 | 366 | // Set search query. |
367 | 367 | if ( |
368 | 368 | (!empty($this->searchParams['fulltext'])) |
369 | - || preg_match('/' . $fields['fulltext'] . ':\((.*)\)/', trim($this->searchParams['query']), $matches) |
|
369 | + || preg_match('/'.$fields['fulltext'].':\((.*)\)/', trim($this->searchParams['query']), $matches) |
|
370 | 370 | ) { |
371 | 371 | // If the query already is a fulltext query e.g using the facets |
372 | 372 | $this->searchParams['query'] = empty($matches[1]) ? $this->searchParams['query'] : $matches[1]; |
373 | 373 | // Search in fulltext field if applicable. Query must not be empty! |
374 | 374 | if (!empty($this->searchParams['query'])) { |
375 | - $query = $fields['fulltext'] . ':(' . Solr::escapeQuery(trim($this->searchParams['query'])) . ')'; |
|
375 | + $query = $fields['fulltext'].':('.Solr::escapeQuery(trim($this->searchParams['query'])).')'; |
|
376 | 376 | } |
377 | 377 | $params['fulltext'] = true; |
378 | 378 | } else { |
@@ -395,9 +395,9 @@ discard block |
||
395 | 395 | in_array($this->searchParams['extOperator'][$i], $allowedOperators) |
396 | 396 | ) { |
397 | 397 | if (!empty($query)) { |
398 | - $query .= ' ' . $this->searchParams['extOperator'][$i] . ' '; |
|
398 | + $query .= ' '.$this->searchParams['extOperator'][$i].' '; |
|
399 | 399 | } |
400 | - $query .= Indexer::getIndexFieldName($this->searchParams['extField'][$i], $this->settings['storagePid']) . ':(' . Solr::escapeQuery($this->searchParams['extQuery'][$i]) . ')'; |
|
400 | + $query .= Indexer::getIndexFieldName($this->searchParams['extField'][$i], $this->settings['storagePid']).':('.Solr::escapeQuery($this->searchParams['extQuery'][$i]).')'; |
|
401 | 401 | } |
402 | 402 | } |
403 | 403 | } |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | // Add filter query for date search |
407 | 407 | if (!empty($this->searchParams['dateFrom']) && !empty($this->searchParams['dateTo'])) { |
408 | 408 | // combine dateFrom and dateTo into range search |
409 | - $params['filterquery'][]['query'] = '{!join from=' . $fields['uid'] . ' to=' . $fields['uid'] . '}'. $fields['date'] . ':[' . $this->searchParams['dateFrom'] . ' TO ' . $this->searchParams['dateTo'] . ']'; |
|
409 | + $params['filterquery'][]['query'] = '{!join from='.$fields['uid'].' to='.$fields['uid'].'}'.$fields['date'].':['.$this->searchParams['dateFrom'].' TO '.$this->searchParams['dateTo'].']'; |
|
410 | 410 | } |
411 | 411 | |
412 | 412 | // Add filter query for faceting. |
@@ -423,12 +423,12 @@ discard block |
||
423 | 423 | ) { |
424 | 424 | // Search in document and all subordinates (valid for up to three levels of hierarchy). |
425 | 425 | $params['filterquery'][]['query'] = '_query_:"{!join from=' |
426 | - . $fields['uid'] . ' to=' . $fields['partof'] . '}' |
|
427 | - . $fields['uid'] . ':{!join from=' . $fields['uid'] . ' to=' . $fields['partof'] . '}' |
|
428 | - . $fields['uid'] . ':' . $this->searchParams['documentId'] . '"' . ' OR {!join from=' |
|
429 | - . $fields['uid'] . ' to=' . $fields['partof'] . '}' |
|
430 | - . $fields['uid'] . ':' . $this->searchParams['documentId'] . ' OR ' |
|
431 | - . $fields['uid'] . ':' . $this->searchParams['documentId']; |
|
426 | + . $fields['uid'].' to='.$fields['partof'].'}' |
|
427 | + . $fields['uid'].':{!join from='.$fields['uid'].' to='.$fields['partof'].'}' |
|
428 | + . $fields['uid'].':'.$this->searchParams['documentId'].'"'.' OR {!join from=' |
|
429 | + . $fields['uid'].' to='.$fields['partof'].'}' |
|
430 | + . $fields['uid'].':'.$this->searchParams['documentId'].' OR ' |
|
431 | + . $fields['uid'].':'.$this->searchParams['documentId']; |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | // if collections are given, we prepare the collection query string |
@@ -448,8 +448,8 @@ discard block |
||
448 | 448 | if ($this->listedMetadata) { |
449 | 449 | foreach ($this->listedMetadata as $metadata) { |
450 | 450 | if ($metadata->getIndexStored() || $metadata->getIndexIndexed()) { |
451 | - $listMetadataRecord = $metadata->getIndexName() . '_' . ($metadata->getIndexTokenized() ? 't' : 'u') . ($metadata->getIndexStored() ? 's' : 'u') . ($metadata->getIndexIndexed() ? 'i' : 'u'); |
|
452 | - $params['fields'] .= ',' . $listMetadataRecord; |
|
451 | + $listMetadataRecord = $metadata->getIndexName().'_'.($metadata->getIndexTokenized() ? 't' : 'u').($metadata->getIndexStored() ? 's' : 'u').($metadata->getIndexIndexed() ? 'i' : 'u'); |
|
452 | + $params['fields'] .= ','.$listMetadataRecord; |
|
453 | 453 | $params['listMetadataRecords'][$metadata->getIndexName()] = $listMetadataRecord; |
454 | 454 | } |
455 | 455 | } |
@@ -524,8 +524,8 @@ discard block |
||
524 | 524 | if ($this->searchParams['fulltext'] == '1') { |
525 | 525 | $searchResult['snippet'] = $doc['snippet']; |
526 | 526 | $searchResult['highlight'] = $doc['highlight']; |
527 | - $searchResult['highlight_word'] = preg_replace('/^;|;$/', '', // remove ; at beginning or end |
|
528 | - preg_replace('/;+/', ';', // replace any multiple of ; with a single ; |
|
527 | + $searchResult['highlight_word'] = preg_replace('/^;|;$/', '', // remove ; at beginning or end |
|
528 | + preg_replace('/;+/', ';', // replace any multiple of ; with a single ; |
|
529 | 529 | preg_replace('/[{~\d*}{\s+}{^=*\d+.*\d*}`~!@#$%\^&*()_|+-=?;:\'",.<>\{\}\[\]\\\]/', ';', $this->searchParams['query']))); // replace search operators and special characters with ; |
530 | 530 | } |
531 | 531 | $documents[$doc['uid']]['searchResults'][] = $searchResult; |
@@ -549,7 +549,7 @@ discard block |
||
549 | 549 | |
550 | 550 | // Fetch metadata for the current batch |
551 | 551 | $metadataOf = $this->fetchToplevelMetadataFromSolr([ |
552 | - 'query' => 'partof:' . $doc['uid'], |
|
552 | + 'query' => 'partof:'.$doc['uid'], |
|
553 | 553 | 'start' => $start, |
554 | 554 | 'rows' => min($batchSize, $totalChildren - $start), |
555 | 555 | ]); |
@@ -601,8 +601,8 @@ discard block |
||
601 | 601 | if ($this->listedMetadata) { |
602 | 602 | foreach ($this->listedMetadata as $metadata) { |
603 | 603 | if ($metadata->getIndexStored() || $metadata->getIndexIndexed()) { |
604 | - $listMetadataRecord = $metadata->getIndexName() . '_' . ($metadata->getIndexTokenized() ? 't' : 'u') . ($metadata->getIndexStored() ? 's' : 'u') . ($metadata->getIndexIndexed() ? 'i' : 'u'); |
|
605 | - $params['fields'] .= ',' . $listMetadataRecord; |
|
604 | + $listMetadataRecord = $metadata->getIndexName().'_'.($metadata->getIndexTokenized() ? 't' : 'u').($metadata->getIndexStored() ? 's' : 'u').($metadata->getIndexIndexed() ? 'i' : 'u'); |
|
605 | + $params['fields'] .= ','.$listMetadataRecord; |
|
606 | 606 | $params['listMetadataRecords'][$metadata->getIndexName()] = $listMetadataRecord; |
607 | 607 | } |
608 | 608 | } |
@@ -653,7 +653,7 @@ discard block |
||
653 | 653 | $cache = null; |
654 | 654 | // Calculate cache identifier. |
655 | 655 | if ($enableCache === true) { |
656 | - $cacheIdentifier = Helper::digest($solr->core . print_r($parameters, true)); |
|
656 | + $cacheIdentifier = Helper::digest($solr->core.print_r($parameters, true)); |
|
657 | 657 | $cache = GeneralUtility::makeInstance(CacheManager::class)->getCache('tx_dlf_solr'); |
658 | 658 | } |
659 | 659 | $resultSet = [ |
@@ -742,24 +742,24 @@ discard block |
||
742 | 742 | foreach ($this->collections as $collection) { |
743 | 743 | // check for virtual collections query string |
744 | 744 | if ($collection->getIndexSearch()) { |
745 | - $virtualCollectionsQueryString .= empty($virtualCollectionsQueryString) ? '(' . $collection->getIndexSearch() . ')' : ' OR (' . $collection->getIndexSearch() . ')'; |
|
745 | + $virtualCollectionsQueryString .= empty($virtualCollectionsQueryString) ? '('.$collection->getIndexSearch().')' : ' OR ('.$collection->getIndexSearch().')'; |
|
746 | 746 | } else { |
747 | - $collectionsQueryString .= empty($collectionsQueryString) ? '"' . $collection->getIndexName() . '"' : ' OR "' . $collection->getIndexName() . '"'; |
|
747 | + $collectionsQueryString .= empty($collectionsQueryString) ? '"'.$collection->getIndexName().'"' : ' OR "'.$collection->getIndexName().'"'; |
|
748 | 748 | } |
749 | 749 | } |
750 | 750 | |
751 | 751 | // distinguish between simple collection browsing and actual searching within the collection(s) |
752 | 752 | if (!empty($collectionsQueryString)) { |
753 | 753 | if (empty($query)) { |
754 | - $collectionsQueryString = '(collection_faceting:(' . $collectionsQueryString . ') AND toplevel:true AND partof:0)'; |
|
754 | + $collectionsQueryString = '(collection_faceting:('.$collectionsQueryString.') AND toplevel:true AND partof:0)'; |
|
755 | 755 | } else { |
756 | - $collectionsQueryString = '(collection_faceting:(' . $collectionsQueryString . '))'; |
|
756 | + $collectionsQueryString = '(collection_faceting:('.$collectionsQueryString.'))'; |
|
757 | 757 | } |
758 | 758 | } |
759 | 759 | |
760 | 760 | // virtual collections might query documents that are neither toplevel:true nor partof:0 and need to be searched separately |
761 | 761 | if (!empty($virtualCollectionsQueryString)) { |
762 | - $virtualCollectionsQueryString = '(' . $virtualCollectionsQueryString . ')'; |
|
762 | + $virtualCollectionsQueryString = '('.$virtualCollectionsQueryString.')'; |
|
763 | 763 | } |
764 | 764 | |
765 | 765 | // combine both query strings into a single filterquery via OR if both are given, otherwise pass either of those |
@@ -837,7 +837,7 @@ discard block |
||
837 | 837 | private function translateLanguageCode(&$doc): void |
838 | 838 | { |
839 | 839 | if ($doc['metadata']['language']) { |
840 | - foreach($doc['metadata']['language'] as $indexName => $language) { |
|
840 | + foreach ($doc['metadata']['language'] as $indexName => $language) { |
|
841 | 841 | $doc['metadata']['language'][$indexName] = Helper::getLanguageName($language); |
842 | 842 | } |
843 | 843 | } |