Passed
Pull Request — master (#123)
by
unknown
04:14
created
Classes/Controller/CollectionController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
             $simplePagination = new SimplePagination($solrPaginator);
169 169
 
170 170
             $pagination = $this->buildSimplePagination($simplePagination, $solrPaginator);
171
-            $this->view->assignMultiple([ 'pagination' => $pagination, 'paginator' => $solrPaginator ]);
171
+            $this->view->assignMultiple(['pagination' => $pagination, 'paginator' => $solrPaginator]);
172 172
         }
173 173
 
174 174
         $this->view->assign('viewData', $this->viewData);
@@ -220,9 +220,9 @@  discard block
 block discarded – undo
220 220
         foreach ($collections as $collection) {
221 221
             $solrQuery = '';
222 222
             if ($collection->getIndexSearch() != '') {
223
-                $solrQuery .= '(' . $collection->getIndexSearch() . ')';
223
+                $solrQuery .= '('.$collection->getIndexSearch().')';
224 224
             } else {
225
-                $solrQuery .= 'collection:("' . Solr::escapeQuery($collection->getIndexName()) . '")';
225
+                $solrQuery .= 'collection:("'.Solr::escapeQuery($collection->getIndexName()).'")';
226 226
             }
227 227
 
228 228
             // We only care about the UID and partOf in the results and want them sorted
@@ -236,11 +236,11 @@  discard block
 block discarded – undo
236 236
             if ($collection->getIndexSearch()) {
237 237
                 $params['query'] = $solrQuery;
238 238
             } else {
239
-                $params['query'] = $solrQuery . ' AND partof:0 AND toplevel:true';
239
+                $params['query'] = $solrQuery.' AND partof:0 AND toplevel:true';
240 240
             }
241 241
             $partOfNothing = $solr->searchRaw($params);
242 242
 
243
-            $params['query'] = $solrQuery . ' AND NOT partof:0 AND toplevel:true';
243
+            $params['query'] = $solrQuery.' AND NOT partof:0 AND toplevel:true';
244 244
             $partOfSomething = $solr->searchRaw($params);
245 245
 
246 246
             $collectionInfo = [];
Please login to merge, or discard this patch.
Classes/Controller/BasketController.php 1 patch
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
                 foreach ($this->requestData['selected'] as $docValue) {
134 134
                     if ($docValue['id']) {
135 135
                         $docData = $this->getDocumentData((int) $docValue['id'], $docValue);
136
-                        $pdfUrl .= $docData['urlParams'] . $this->settings['pdfparamseparator'];
136
+                        $pdfUrl .= $docData['urlParams'].$this->settings['pdfparamseparator'];
137 137
                         $this->redirectToUri($pdfUrl);
138 138
                     }
139 139
                 }
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
         if ($allMails->count() > 0) {
201 201
             $mailSelect[0] = htmlspecialchars(LocalizationUtility::translate('basket.chooseMail', 'dlf'));
202 202
             foreach ($allMails as $mail) {
203
-                $mailSelect[$mail->getUid()] = htmlspecialchars($mail->getName()) . ' (' . htmlspecialchars($mail->getMail()) . ')';
203
+                $mailSelect[$mail->getUid()] = htmlspecialchars($mail->getName()).' ('.htmlspecialchars($mail->getMail()).')';
204 204
             }
205 205
             $this->view->assign('mailSelect', $mailSelect);
206 206
         }
@@ -288,12 +288,12 @@  discard block
 block discarded – undo
288 288
 
289 289
         $docData = $this->getDocumentData((int) $id, $data);
290 290
 
291
-        $entryKey = $id . '_' . $startPage;
291
+        $entryKey = $id.'_'.$startPage;
292 292
         if (!empty($startX)) {
293
-            $entryKey .= '_' . $startX;
293
+            $entryKey .= '_'.$startX;
294 294
         }
295 295
         if (!empty($endX)) {
296
-            $entryKey .= '_' . $endX;
296
+            $entryKey .= '_'.$endX;
297 297
         }
298 298
 
299 299
         $entry = [
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
             $urlParams = str_replace("##endy##", $data['endY'] === "" ? "" : (int) $data['endY'], $urlParams);
353 353
             $urlParams = str_replace("##rotation##", $data['rotation'] === "" ? "" : (int) $data['rotation'], $urlParams);
354 354
 
355
-            $downloadUrl = $this->settings['pdfgenerate'] . $urlParams;
355
+            $downloadUrl = $this->settings['pdfgenerate'].$urlParams;
356 356
 
357 357
             $title = $this->document->getTitle();
358 358
             if (empty($title)) {
@@ -363,15 +363,15 @@  discard block
 block discarded – undo
363 363
             $info = '';
364 364
             if ($data['startX'] != '' && $data['endX'] != '') {
365 365
                 // cutout
366
-                $info .= htmlspecialchars(LocalizationUtility::translate('basket.cutout', 'dlf')) . ' ';
366
+                $info .= htmlspecialchars(LocalizationUtility::translate('basket.cutout', 'dlf')).' ';
367 367
             }
368 368
             if ($data['startpage'] == $data['endpage']) {
369 369
                 // One page
370
-                $info .= htmlspecialchars(LocalizationUtility::translate('page', 'dlf')) . ' ' . $data['startpage'];
370
+                $info .= htmlspecialchars(LocalizationUtility::translate('page', 'dlf')).' '.$data['startpage'];
371 371
             } else {
372
-                $info .= htmlspecialchars(LocalizationUtility::translate('page', 'dlf')) . ' ' . $data['startpage'] . '-' . $data['endpage'];
372
+                $info .= htmlspecialchars(LocalizationUtility::translate('page', 'dlf')).' '.$data['startpage'].'-'.$data['endpage'];
373 373
             }
374
-            $downloadLink = '<a href="' . $downloadUrl . '" target="_blank">' . htmlspecialchars($title) . '</a> (' . $info . ')';
374
+            $downloadLink = '<a href="'.$downloadUrl.'" target="_blank">'.htmlspecialchars($title).'</a> ('.$info.')';
375 375
             if ($data['startpage'] == $data['endpage']) {
376 376
                 $pageNums = 1;
377 377
             } else {
@@ -444,12 +444,12 @@  discard block
 block discarded – undo
444 444
             if ($piVars['addToBasket'] == 'list') {
445 445
                 $documentItem['endpage'] = $this->document->getCurrentDocument()->numPages;
446 446
             }
447
-            $arrayKey = $documentItem['id'] . '_' . $page;
447
+            $arrayKey = $documentItem['id'].'_'.$page;
448 448
             if (!empty($documentItem['startX'])) {
449
-                $arrayKey .= '_' . $documentItem['startX'];
449
+                $arrayKey .= '_'.$documentItem['startX'];
450 450
             }
451 451
             if (!empty($documentItem['endX'])) {
452
-                $arrayKey .= '_' . $documentItem['endX'];
452
+                $arrayKey .= '_'.$documentItem['endX'];
453 453
             }
454 454
             // do not add more than one identical object
455 455
             if (!in_array($arrayKey, $items)) {
@@ -470,14 +470,14 @@  discard block
 block discarded – undo
470 470
                     // remove parameter endpage
471 471
                     $pdfParams = str_replace(",##endpage##", '', $pdfParams);
472 472
                 }
473
-                $pdfGenerateUrl = $this->settings['pdfgenerate'] . $pdfParams;
473
+                $pdfGenerateUrl = $this->settings['pdfgenerate'].$pdfParams;
474 474
                 if ($this->settings['pregeneration']) {
475 475
                     // send ajax request to webapp
476 476
                     $output .= '
477 477
      <script>
478 478
       $(document).ready(function(){
479 479
        $.ajax({
480
-         url: "' . $pdfGenerateUrl . '",
480
+         url: "' . $pdfGenerateUrl.'",
481 481
        }).done(function() {
482 482
        });
483 483
       });
@@ -515,12 +515,12 @@  discard block
 block discarded – undo
515 515
         }
516 516
         foreach ($piVars['selected'] as $value) {
517 517
             if (isset($value['id'])) {
518
-                $arrayKey = $value['id'] . '_' . $value['startpage'];
518
+                $arrayKey = $value['id'].'_'.$value['startpage'];
519 519
                 if (!empty($value['startX'])) {
520
-                    $arrayKey .= '_' . $value['startX'];
520
+                    $arrayKey .= '_'.$value['startX'];
521 521
                 }
522 522
                 if (!empty($value['endX'])) {
523
-                    $arrayKey .= '_' . $value['endX'];
523
+                    $arrayKey .= '_'.$value['endX'];
524 524
                 }
525 525
                 if (isset($items[$arrayKey])) {
526 526
                     unset($items[$arrayKey]);
@@ -553,7 +553,7 @@  discard block
 block discarded – undo
553 553
 
554 554
         $mailObject = $this->mailRepository->findByUid(intval($mailId))->getFirst();
555 555
 
556
-        $mailText = htmlspecialchars(LocalizationUtility::translate('basket.mailBody', 'dlf')) . "\n";
556
+        $mailText = htmlspecialchars(LocalizationUtility::translate('basket.mailBody', 'dlf'))."\n";
557 557
         $numberOfPages = 0;
558 558
         $pdfUrl = $this->settings['pdfdownload'];
559 559
         // prepare links
@@ -561,7 +561,7 @@  discard block
 block discarded – undo
561 561
             if ($docValue['id']) {
562 562
                 $explodeId = explode("_", $docValue['id']);
563 563
                 $docData = $this->getDocumentData((int) $explodeId[0], $docValue);
564
-                $pdfUrl .= $docData['urlParams'] . $this->settings['pdfparamseparator'];
564
+                $pdfUrl .= $docData['urlParams'].$this->settings['pdfparamseparator'];
565 565
                 $pages = (abs(intval($docValue['startpage']) - intval($docValue['endpage'])));
566 566
                 if ($pages === 0) {
567 567
                     $numberOfPages = $numberOfPages + 1;
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
         }
573 573
         // Remove leading/tailing pdfparamseperator
574 574
         $pdfUrl = trim($pdfUrl, $this->settings['pdfparamseparator']);
575
-        $mailBody = $mailText . $pdfUrl;
575
+        $mailBody = $mailText.$pdfUrl;
576 576
         // Get hook objects.
577 577
         $hookObjects = Helper::getHookObjects('Classes/Controller/BasketController.php');
578 578
         // Hook for getting a customized mail body.
@@ -599,7 +599,7 @@  discard block
 block discarded – undo
599 599
         $newActionLog = GeneralUtility::makeInstance(ActionLog::class);
600 600
         $newActionLog->setFileName($pdfUrl);
601 601
         $newActionLog->setCountPages($numberOfPages);
602
-        $newActionLog->setLabel('Mail: ' . $mailObject->getMail());
602
+        $newActionLog->setLabel('Mail: '.$mailObject->getMail());
603 603
 
604 604
         if ($GLOBALS["TSFE"]->loginUser) {
605 605
             // internal user
@@ -630,7 +630,7 @@  discard block
 block discarded – undo
630 630
         foreach ($this->requestData['selected'] as $docId => $docValue) {
631 631
             if ($docValue['id']) {
632 632
                 $docData = $this->getDocumentData((int) $docValue['id'], $docValue);
633
-                $pdfUrl .= $docData['urlParams'] . $this->settings['pdfparamseparator'];
633
+                $pdfUrl .= $docData['urlParams'].$this->settings['pdfparamseparator'];
634 634
                 $numberOfPages += $docData['pageNums'];
635 635
             }
636 636
         }
@@ -648,7 +648,7 @@  discard block
 block discarded – undo
648 648
                 if ($docValue['id']) {
649 649
                     $explodeId = explode("_", $docId);
650 650
                     $docData = $this->getDocumentData((int) $explodeId[0], $docValue);
651
-                    $pdfUrl .= $docData['urlParams'] . $this->settings['pdfparamseparator'];
651
+                    $pdfUrl .= $docData['urlParams'].$this->settings['pdfparamseparator'];
652 652
                     $numberOfPages += $docData['pageNums'];
653 653
                 }
654 654
             }
@@ -665,12 +665,12 @@  discard block
 block discarded – undo
665 665
             // internal user
666 666
             $actionLog->setUserId($GLOBALS["TSFE"]->fe_user->user['uid']);
667 667
             $actionLog->setName($GLOBALS["TSFE"]->fe_user->user['username']);
668
-            $actionLog->setLabel('Print: ' . $printer->getLabel());
668
+            $actionLog->setLabel('Print: '.$printer->getLabel());
669 669
         } else {
670 670
             // external user
671 671
             $actionLog->setUserId(0);
672 672
             $actionLog->setName('n/a');
673
-            $actionLog->setLabel('Print: ' . $printer->getLabel());
673
+            $actionLog->setLabel('Print: '.$printer->getLabel());
674 674
         }
675 675
         // add action to protocol
676 676
         $this->actionLogRepository->add($actionLog);
Please login to merge, or discard this patch.
Classes/Controller/TableOfContentsController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
                 }
162 162
             }
163 163
             // Append "IFSUB" to "ITEM_STATE" if this entry has sub-entries.
164
-            $entryArray['ITEM_STATE'] = ($entryArray['ITEM_STATE'] == 'NO' ? 'IFSUB' : $entryArray['ITEM_STATE'] . 'IFSUB');
164
+            $entryArray['ITEM_STATE'] = ($entryArray['ITEM_STATE'] == 'NO' ? 'IFSUB' : $entryArray['ITEM_STATE'].'IFSUB');
165 165
         }
166 166
         return $entryArray;
167 167
     }
@@ -338,16 +338,16 @@  discard block
 block discarded – undo
338 338
                     $title = '';
339 339
                     foreach ($fields as $field) {
340 340
                         if ($field == 'type') {
341
-                            $title .= $this->getTranslatedType($entry['type']) . ' ';
341
+                            $title .= $this->getTranslatedType($entry['type']).' ';
342 342
                         } else {
343
-                            $title .= $entry[$field] . ' ';
343
+                            $title .= $entry[$field].' ';
344 344
                         }
345 345
                     }
346 346
                     return trim($title);
347 347
                 }
348 348
             }
349 349
         }
350
-        return $label ?: $orderLabel;
350
+        return $label ? : $orderLabel;
351 351
     }
352 352
 
353 353
     /**
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
     {
383 383
         usort(
384 384
             $menu[0]['_SUB_MENU'],
385
-            function ($firstElement, $secondElement) {
385
+            function($firstElement, $secondElement) {
386 386
                 if (!empty($firstElement['orderlabel'])) {
387 387
                     return $firstElement['orderlabel'] <=> $secondElement['orderlabel'];
388 388
                 }
Please login to merge, or discard this patch.
Classes/Hooks/ItemsProcFunc.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,8 +155,8 @@
 block discarded – undo
155 155
             ->select(...explode(',', $fields))
156 156
             ->from($table)
157 157
             ->where(
158
-                $queryBuilder->expr()->eq($table . '.pid', $this->storagePid),
159
-                $queryBuilder->expr()->in($table . '.sys_language_uid', [-1, 0]),
158
+                $queryBuilder->expr()->eq($table.'.pid', $this->storagePid),
159
+                $queryBuilder->expr()->in($table.'.sys_language_uid', [-1, 0]),
160 160
                 $andWhere
161 161
             )
162 162
             ->orderBy($sorting)
Please login to merge, or discard this patch.
Classes/Task/IndexAdditionalFieldProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@
 block discarded – undo
59 59
 
60 60
         // Text field for document URL
61 61
         $fieldName = 'doc';
62
-        $fieldId = 'task_' . $fieldName;
63
-        $fieldHtml = '<input type="text" name="tx_scheduler[' . $fieldName . ']" id="' . $fieldId . '" value="' . $taskInfo[$fieldName] . '" >';
62
+        $fieldId = 'task_'.$fieldName;
63
+        $fieldHtml = '<input type="text" name="tx_scheduler['.$fieldName.']" id="'.$fieldId.'" value="'.$taskInfo[$fieldName].'" >';
64 64
         $additionalFields[$fieldId] = [
65 65
             'code' => $fieldHtml,
66 66
             'label' => 'LLL:EXT:dlf/Resources/Private/Language/locallang_tasks.xlf:additionalFields.doc',
Please login to merge, or discard this patch.
Classes/Task/HarvestAdditionalFieldProvider.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -65,16 +65,16 @@  discard block
 block discarded – undo
65 65
 
66 66
         // Text field for library
67 67
         $fieldName = 'lib';
68
-        $fieldId = 'task_' . $fieldName;
68
+        $fieldId = 'task_'.$fieldName;
69 69
 
70 70
         $allLibraries = $this->getLibraries($taskInfo['pid']);
71 71
         $options = [];
72 72
         $options[] = '<option value="-1"></option>';
73 73
         foreach ($allLibraries as $label => $uid) {
74
-            $options[] = '<option value="' . $uid . '" ' . ($taskInfo['lib'] == $uid ? 'selected' : '') . ' >' . $label . '</option>';
74
+            $options[] = '<option value="'.$uid.'" '.($taskInfo['lib'] == $uid ? 'selected' : '').' >'.$label.'</option>';
75 75
         }
76 76
 
77
-        $fieldHtml = '<select name="tx_scheduler[' . $fieldName . ']" id="' . $fieldId . '">' . implode("\n", $options) . '</select>';
77
+        $fieldHtml = '<select name="tx_scheduler['.$fieldName.']" id="'.$fieldId.'">'.implode("\n", $options).'</select>';
78 78
         $additionalFields[$fieldId] = [
79 79
             'code' => $fieldHtml,
80 80
             'label' => 'LLL:EXT:dlf/Resources/Private/Language/locallang_tasks.xlf:additionalFields.lib',
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
 
91 91
         // Text field for from
92 92
         $fieldName = 'from';
93
-        $fieldId = 'task_' . $fieldName;
94
-        $fieldHtml = '<input type="date" name="tx_scheduler[' . $fieldName . ']" id="' . $fieldId . '" value="' . $taskInfo[$fieldName] . '" >';
93
+        $fieldId = 'task_'.$fieldName;
94
+        $fieldHtml = '<input type="date" name="tx_scheduler['.$fieldName.']" id="'.$fieldId.'" value="'.$taskInfo[$fieldName].'" >';
95 95
         $additionalFields[$fieldId] = [
96 96
             'code' => $fieldHtml,
97 97
             'label' => 'LLL:EXT:dlf/Resources/Private/Language/locallang_tasks.xlf:additionalFields.from',
@@ -101,8 +101,8 @@  discard block
 block discarded – undo
101 101
 
102 102
         // Text field for until
103 103
         $fieldName = 'until';
104
-        $fieldId = 'task_' . $fieldName;
105
-        $fieldHtml = '<input type="date" name="tx_scheduler[' . $fieldName . ']" id="' . $fieldId . '" value="' . $taskInfo[$fieldName] . '" >';
104
+        $fieldId = 'task_'.$fieldName;
105
+        $fieldHtml = '<input type="date" name="tx_scheduler['.$fieldName.']" id="'.$fieldId.'" value="'.$taskInfo[$fieldName].'" >';
106 106
         $additionalFields[$fieldId] = [
107 107
             'code' => $fieldHtml,
108 108
             'label' => 'LLL:EXT:dlf/Resources/Private/Language/locallang_tasks.xlf:additionalFields.until',
@@ -112,8 +112,8 @@  discard block
 block discarded – undo
112 112
 
113 113
         // Text field for set
114 114
         $fieldName = 'set';
115
-        $fieldId = 'task_' . $fieldName;
116
-        $fieldHtml = '<input type="text" name="tx_scheduler[' . $fieldName . ']" id="' . $fieldId . '" value="' . $taskInfo[$fieldName] . '" >';
115
+        $fieldId = 'task_'.$fieldName;
116
+        $fieldHtml = '<input type="text" name="tx_scheduler['.$fieldName.']" id="'.$fieldId.'" value="'.$taskInfo[$fieldName].'" >';
117 117
         $additionalFields[$fieldId] = [
118 118
             'code' => $fieldHtml,
119 119
             'label' => 'LLL:EXT:dlf/Resources/Private/Language/locallang_tasks.xlf:additionalFields.set',
Please login to merge, or discard this patch.
Classes/Task/ReindexAdditionalFieldProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -63,10 +63,10 @@  discard block
 block discarded – undo
63 63
 
64 64
         // Select for collection(s)
65 65
         $fieldName = 'coll';
66
-        $fieldId = 'task_' . $fieldName;
66
+        $fieldId = 'task_'.$fieldName;
67 67
         $options = $this->getCollOptions($taskInfo['coll'], $taskInfo['pid']);
68 68
         ;
69
-        $fieldHtml = '<select name="tx_scheduler[' . $fieldName . '][]" id="' . $fieldId . '" size="10" multiple="multiple">' . implode("\n", $options) . '</select>';
69
+        $fieldHtml = '<select name="tx_scheduler['.$fieldName.'][]" id="'.$fieldId.'" size="10" multiple="multiple">'.implode("\n", $options).'</select>';
70 70
         $additionalFields[$fieldId] = [
71 71
             'code' => $fieldHtml,
72 72
             'label' => 'LLL:EXT:dlf/Resources/Private/Language/locallang_tasks.xlf:additionalFields.coll',
@@ -85,9 +85,9 @@  discard block
 block discarded – undo
85 85
 
86 86
         // Checkbox for all
87 87
         $fieldName = 'all';
88
-        $fieldId = 'task_' . $fieldName;
89
-        $fieldHtml = '<input type="checkbox" name="tx_scheduler[' . $fieldName . ']" id="' . $fieldId . '" value="1"' .
90
-            ($taskInfo['all'] ? ' checked="checked"' : '') . '>';
88
+        $fieldId = 'task_'.$fieldName;
89
+        $fieldHtml = '<input type="checkbox" name="tx_scheduler['.$fieldName.']" id="'.$fieldId.'" value="1"'.
90
+            ($taskInfo['all'] ? ' checked="checked"' : '').'>';
91 91
         $additionalFields[$fieldId] = [
92 92
             'code' => $fieldHtml,
93 93
             'label' => 'LLL:EXT:dlf/Resources/Private/Language/locallang_tasks.xlf:additionalFields.all',
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         $options = [];
112 112
         $collections = $this->getCollections($pid);
113 113
         foreach ($collections as $label => $uid) {
114
-            $options[] = '<option value="' . $uid . '" ' . (in_array($uid, $coll) ? 'selected' : '') . ' >' . $label . '</option>';
114
+            $options[] = '<option value="'.$uid.'" '.(in_array($uid, $coll) ? 'selected' : '').' >'.$label.'</option>';
115 115
         }
116 116
         return $options;
117 117
     }
Please login to merge, or discard this patch.
Classes/Controller/NavigationController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         $pageOptions = [];
106 106
         for ($i = 1; $i <= $this->document->getCurrentDocument()->numPages; $i++) {
107 107
             $orderLabel = $this->document->getCurrentDocument()->physicalStructureInfo[$this->document->getCurrentDocument()->physicalStructure[$i]]['orderlabel'];
108
-            $pageOptions[$i] = '[' . $i . ']' . ($orderLabel ? ' - ' . htmlspecialchars($orderLabel) : '');
108
+            $pageOptions[$i] = '['.$i.']'.($orderLabel ? ' - '.htmlspecialchars($orderLabel) : '');
109 109
         }
110 110
 
111 111
         $this->view->assign('pageOptions', $pageOptions);
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                 $measureOptions = [];
123 123
                 $measurePages = [];
124 124
                 for ($i = 1; $i <= $this->document->getCurrentDocument()->numMeasures; $i++) {
125
-                    $measureOptions[$i] = '[' . $i . ']' . ($this->document->getCurrentDocument()->musicalStructureInfo[$this->document->getCurrentDocument()->musicalStructure[$i]['measureid']]['orderlabel'] ? ' - ' . htmlspecialchars($this->document->getCurrentDocument()->musicalStructureInfo[$this->document->getCurrentDocument()->musicalStructureInfo[$i]]['orderlabel']) : '');
125
+                    $measureOptions[$i] = '['.$i.']'.($this->document->getCurrentDocument()->musicalStructureInfo[$this->document->getCurrentDocument()->musicalStructure[$i]['measureid']]['orderlabel'] ? ' - '.htmlspecialchars($this->document->getCurrentDocument()->musicalStructureInfo[$this->document->getCurrentDocument()->musicalStructureInfo[$i]]['orderlabel']) : '');
126 126
                     $measurePages[$i] = $this->document->getCurrentDocument()->musicalStructure[$i]['page'];
127 127
                 }
128 128
 
Please login to merge, or discard this patch.
Classes/Controller/AbstractController.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -158,11 +158,11 @@  discard block
 block discarded – undo
158 158
                 if ($doc !== null) {
159 159
                     $this->document->setCurrentDocument($doc);
160 160
                 } else {
161
-                    $this->logger->error('Failed to load document with record ID "' . $this->requestData['recordId'] . '"');
161
+                    $this->logger->error('Failed to load document with record ID "'.$this->requestData['recordId'].'"');
162 162
                 }
163 163
             }
164 164
         } else {
165
-            $this->logger->error('Invalid ID "' . $documentId . '" or PID "' . $this->settings['storagePid'] . '" for document loading');
165
+            $this->logger->error('Invalid ID "'.$documentId.'" or PID "'.$this->settings['storagePid'].'" for document loading');
166 166
         }
167 167
     }
168 168
 
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
             && !MathUtility::canBeInterpretedAsInteger($this->requestData['id'])
260 260
             && !GeneralUtility::isValidUrl($this->requestData['id'])
261 261
         ) {
262
-            $this->logger->warning('Invalid ID or URI "' . $this->requestData['id'] . '" for document loading');
262
+            $this->logger->warning('Invalid ID or URI "'.$this->requestData['id'].'" for document loading');
263 263
             unset($this->requestData['id']);
264 264
         }
265 265
 
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
         $pages = [];
356 356
         $pagesSect = [];
357 357
         $aRange = [];
358
-        $nRange = 5;    // ToDo: should be made configurable
358
+        $nRange = 5; // ToDo: should be made configurable
359 359
 
360 360
         // lower limit of the range
361 361
         $nBottom = $currentPageNumber - $nRange;
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
 
371 371
         // check whether the first screen page is > 1, if yes then points must be added
372 372
         if ($aRange[0] > 1) {
373
-            array_push($pagesSect, ['label' => '...','startRecordNumber' => '...']);
373
+            array_push($pagesSect, ['label' => '...', 'startRecordNumber' => '...']);
374 374
         };
375 375
         $lastStartRecordNumberGrid = 0; // due to validity outside the loop
376 376
         foreach (range($firstPage, $lastPage) as $i) {
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
 
414 414
                 // Check if screen page is in range
415 415
                 if (in_array($i, $aRange)) {
416
-                    array_push($pagesSect, ['label' => $i,'startRecordNumber' => $startRecordNumber]);
416
+                    array_push($pagesSect, ['label' => $i, 'startRecordNumber' => $startRecordNumber]);
417 417
                 };
418 418
             };
419 419
         };
@@ -476,7 +476,7 @@  discard block
 block discarded – undo
476 476
         if ($this->document) {
477 477
             $doc = AbstractDocument::getInstance($this->document->getLocation(), $this->settings, true);
478 478
         } else {
479
-            $this->logger->error('Invalid UID "' . $documentId . '" or PID "' . $this->settings['storagePid'] . '" for document loading');
479
+            $this->logger->error('Invalid UID "'.$documentId.'" or PID "'.$this->settings['storagePid'].'" for document loading');
480 480
         }
481 481
 
482 482
         return $doc;
@@ -514,7 +514,7 @@  discard block
 block discarded – undo
514 514
             foreach ($this->requestData['multipleSource'] as $location) {
515 515
                 $document = AbstractDocument::getInstance($location, $this->settings, true);
516 516
                 if ($document !== null) {
517
-                    $this->documentArray['extra_' . $i] = $document;
517
+                    $this->documentArray['extra_'.$i] = $document;
518 518
                 }
519 519
                 $i++;
520 520
             }
@@ -538,7 +538,7 @@  discard block
 block discarded – undo
538 538
 
539 539
             $this->document->setLocation($documentId);
540 540
         } else {
541
-            $this->logger->error('Invalid location given "' . $documentId . '" for document loading');
541
+            $this->logger->error('Invalid location given "'.$documentId.'" for document loading');
542 542
         }
543 543
 
544 544
         return $doc;
Please login to merge, or discard this patch.