@@ -261,7 +261,7 @@ |
||
261 | 261 | $languageService = $this->getLanguageService(); |
262 | 262 | $buttonBar = $this->moduleTemplate->getDocHeaderComponent()->getButtonBar(); |
263 | 263 | // View page |
264 | - $previewDataAttributes =PreviewUriBuilder::create((int)$this->pageinfo['uid']) |
|
264 | + $previewDataAttributes = PreviewUriBuilder::create((int)$this->pageinfo['uid']) |
|
265 | 265 | ->withRootLine(BackendUtility::BEgetRootLine($this->pageinfo['uid'])) |
266 | 266 | ->buildDispatcherDataAttributes(); |
267 | 267 | $viewButton = $buttonBar->makeLinkButton() |
@@ -553,7 +553,7 @@ |
||
553 | 553 | $this->iconFactory->getIcon('actions-system-shortcut-active', Icon::SIZE_SMALL)->render() . '</a>'; |
554 | 554 | } |
555 | 555 | |
556 | - $confirmationText = $this->getLanguageService()->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.makeBookmark'); |
|
556 | + $confirmationText = $this->getLanguageService()->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.makeBookmark'); |
|
557 | 557 | $onClick = 'top.TYPO3.ShortcutMenu.createShortcut(' |
558 | 558 | . GeneralUtility::quoteJSvalue($routeIdentifier) |
559 | 559 | . ', ' . GeneralUtility::quoteJSvalue($arguments) |
@@ -181,7 +181,7 @@ |
||
181 | 181 | ): string { |
182 | 182 | return preg_replace_callback( |
183 | 183 | $pattern, |
184 | - static function ($matches) use ($newRewriteRule) { |
|
184 | + static function($matches) use ($newRewriteRule) { |
|
185 | 185 | return str_replace($matches[2], '', ($matches[1] . $newRewriteRule)) . $matches[3]; |
186 | 186 | }, |
187 | 187 | $configurationFileContent, |
@@ -55,42 +55,42 @@ |
||
55 | 55 | public function getFactories(): array |
56 | 56 | { |
57 | 57 | return [ |
58 | - Http\Application::class => [ static::class, 'getApplication' ], |
|
59 | - Http\NotFoundRequestHandler::class => [ static::class, 'getNotFoundRequestHandler' ], |
|
60 | - Service\ClearCacheService::class => [ static::class, 'getClearCacheService' ], |
|
61 | - Service\CoreUpdateService::class => [ static::class, 'getCoreUpdateService' ], |
|
62 | - Service\CoreVersionService::class => [ static::class, 'getCoreVersionService' ], |
|
63 | - Service\ExtensionConfigurationService::class => [ static::class, 'getExtensionConfigurationService' ], |
|
64 | - Service\LanguagePackService::class => [ static::class, 'getLanguagePackService' ], |
|
65 | - Service\LateBootService::class => [ static::class, 'getLateBootService' ], |
|
66 | - Service\LoadTcaService::class => [ static::class, 'getLoadTcaService' ], |
|
67 | - Service\SilentConfigurationUpgradeService::class => [ static::class, 'getSilentConfigurationUpgradeService' ], |
|
68 | - Service\SilentTemplateFileUpgradeService::class => [ static::class, 'getSilentTemplateFileUpgradeService' ], |
|
69 | - Service\WebServerConfigurationFileService::class => [ static::class, 'getWebServerConfigurationFileService' ], |
|
70 | - Service\Typo3tempFileService::class => [ static::class, 'getTypo3tempFileService' ], |
|
71 | - Service\UpgradeWizardsService::class => [ static::class, 'getUpgradeWizardsService' ], |
|
72 | - Middleware\Installer::class => [ static::class, 'getInstallerMiddleware' ], |
|
73 | - Middleware\Maintenance::class => [ static::class, 'getMaintenanceMiddleware' ], |
|
74 | - Controller\EnvironmentController::class => [ static::class, 'getEnvironmentController' ], |
|
75 | - Controller\IconController::class => [ static::class, 'getIconController' ], |
|
76 | - Controller\InstallerController::class => [ static::class, 'getInstallerController' ], |
|
77 | - Controller\LayoutController::class => [ static::class, 'getLayoutController' ], |
|
78 | - Controller\LoginController::class => [ static::class, 'getLoginController' ], |
|
79 | - Controller\MaintenanceController::class => [ static::class, 'getMaintenanceController' ], |
|
80 | - Controller\SettingsController::class => [ static::class, 'getSettingsController' ], |
|
81 | - Controller\UpgradeController::class => [ static::class, 'getUpgradeController' ], |
|
82 | - Command\LanguagePackCommand::class => [ static::class, 'getLanguagePackCommand' ], |
|
83 | - Command\UpgradeWizardRunCommand::class => [ static::class, 'getUpgradeWizardRunCommand' ], |
|
84 | - Command\UpgradeWizardListCommand::class => [ static::class, 'getUpgradeWizardListCommand' ], |
|
85 | - Database\PermissionsCheck::class => [ static::class, 'getPermissionsCheck' ], |
|
58 | + Http\Application::class => [static::class, 'getApplication'], |
|
59 | + Http\NotFoundRequestHandler::class => [static::class, 'getNotFoundRequestHandler'], |
|
60 | + Service\ClearCacheService::class => [static::class, 'getClearCacheService'], |
|
61 | + Service\CoreUpdateService::class => [static::class, 'getCoreUpdateService'], |
|
62 | + Service\CoreVersionService::class => [static::class, 'getCoreVersionService'], |
|
63 | + Service\ExtensionConfigurationService::class => [static::class, 'getExtensionConfigurationService'], |
|
64 | + Service\LanguagePackService::class => [static::class, 'getLanguagePackService'], |
|
65 | + Service\LateBootService::class => [static::class, 'getLateBootService'], |
|
66 | + Service\LoadTcaService::class => [static::class, 'getLoadTcaService'], |
|
67 | + Service\SilentConfigurationUpgradeService::class => [static::class, 'getSilentConfigurationUpgradeService'], |
|
68 | + Service\SilentTemplateFileUpgradeService::class => [static::class, 'getSilentTemplateFileUpgradeService'], |
|
69 | + Service\WebServerConfigurationFileService::class => [static::class, 'getWebServerConfigurationFileService'], |
|
70 | + Service\Typo3tempFileService::class => [static::class, 'getTypo3tempFileService'], |
|
71 | + Service\UpgradeWizardsService::class => [static::class, 'getUpgradeWizardsService'], |
|
72 | + Middleware\Installer::class => [static::class, 'getInstallerMiddleware'], |
|
73 | + Middleware\Maintenance::class => [static::class, 'getMaintenanceMiddleware'], |
|
74 | + Controller\EnvironmentController::class => [static::class, 'getEnvironmentController'], |
|
75 | + Controller\IconController::class => [static::class, 'getIconController'], |
|
76 | + Controller\InstallerController::class => [static::class, 'getInstallerController'], |
|
77 | + Controller\LayoutController::class => [static::class, 'getLayoutController'], |
|
78 | + Controller\LoginController::class => [static::class, 'getLoginController'], |
|
79 | + Controller\MaintenanceController::class => [static::class, 'getMaintenanceController'], |
|
80 | + Controller\SettingsController::class => [static::class, 'getSettingsController'], |
|
81 | + Controller\UpgradeController::class => [static::class, 'getUpgradeController'], |
|
82 | + Command\LanguagePackCommand::class => [static::class, 'getLanguagePackCommand'], |
|
83 | + Command\UpgradeWizardRunCommand::class => [static::class, 'getUpgradeWizardRunCommand'], |
|
84 | + Command\UpgradeWizardListCommand::class => [static::class, 'getUpgradeWizardListCommand'], |
|
85 | + Database\PermissionsCheck::class => [static::class, 'getPermissionsCheck'], |
|
86 | 86 | ]; |
87 | 87 | } |
88 | 88 | |
89 | 89 | public function getExtensions(): array |
90 | 90 | { |
91 | 91 | return [ |
92 | - 'backend.routes' => [ static::class, 'configureBackendRoutes' ], |
|
93 | - CommandRegistry::class => [ static::class, 'configureCommands' ], |
|
92 | + 'backend.routes' => [static::class, 'configureBackendRoutes'], |
|
93 | + CommandRegistry::class => [static::class, 'configureCommands'], |
|
94 | 94 | ]; |
95 | 95 | } |
96 | 96 |
@@ -60,18 +60,18 @@ |
||
60 | 60 | $html = []; |
61 | 61 | if (!empty($selectIcons)) { |
62 | 62 | $html[] = '<div class="t3js-forms-select-single-icons icon-list">'; |
63 | - $html[] = '<div class="row">'; |
|
63 | + $html[] = '<div class="row">'; |
|
64 | 64 | foreach ($selectIcons as $i => $selectIcon) { |
65 | - $active = $selectIcon['active'] ? ' active' : ''; |
|
66 | - $html[] = '<div class="col col-auto item' . $active . '">'; |
|
65 | + $active = $selectIcon['active'] ? ' active' : ''; |
|
66 | + $html[] = '<div class="col col-auto item' . $active . '">'; |
|
67 | 67 | if (is_array($selectIcon)) { |
68 | 68 | $html[] = '<a href="#" title="' . htmlspecialchars($selectIcon['title'], ENT_COMPAT, 'UTF-8', false) . '" data-select-index="' . htmlspecialchars((string)$selectIcon['index']) . '">'; |
69 | - $html[] = $selectIcon['icon']; |
|
69 | + $html[] = $selectIcon['icon']; |
|
70 | 70 | $html[] = '</a>'; |
71 | 71 | } |
72 | - $html[] = '</div>'; |
|
72 | + $html[] = '</div>'; |
|
73 | 73 | } |
74 | - $html[] = '</div>'; |
|
74 | + $html[] = '</div>'; |
|
75 | 75 | $html[] = '</div>'; |
76 | 76 | } |
77 | 77 |
@@ -138,26 +138,26 @@ |
||
138 | 138 | |
139 | 139 | $html = []; |
140 | 140 | $html[] = '<div class="formengine-field-item t3js-formengine-field-item">'; |
141 | - $html[] = $fieldInformationHtml; |
|
142 | - $html[] = '<div class="form-control-wrap">'; |
|
143 | - $html[] = '<div class="form-wizards-wrap">'; |
|
144 | - $html[] = '<div class="form-wizards-element">'; |
|
145 | - $html[] = $editorHtml; |
|
146 | - $html[] = '</div>'; |
|
141 | + $html[] = $fieldInformationHtml; |
|
142 | + $html[] = '<div class="form-control-wrap">'; |
|
143 | + $html[] = '<div class="form-wizards-wrap">'; |
|
144 | + $html[] = '<div class="form-wizards-element">'; |
|
145 | + $html[] = $editorHtml; |
|
146 | + $html[] = '</div>'; |
|
147 | 147 | if (!empty($fieldControlHtml)) { |
148 | - $html[] = '<div class="form-wizards-items-aside">'; |
|
149 | - $html[] = '<div class="btn-group">'; |
|
150 | - $html[] = $fieldControlHtml; |
|
151 | - $html[] = '</div>'; |
|
152 | - $html[] = '</div>'; |
|
148 | + $html[] = '<div class="form-wizards-items-aside">'; |
|
149 | + $html[] = '<div class="btn-group">'; |
|
150 | + $html[] = $fieldControlHtml; |
|
151 | + $html[] = '</div>'; |
|
152 | + $html[] = '</div>'; |
|
153 | 153 | } |
154 | 154 | if (!empty($fieldWizardHtml)) { |
155 | 155 | $html[] = '<div class="form-wizards-items-bottom">'; |
156 | 156 | $html[] = $fieldWizardHtml; |
157 | 157 | $html[] = '</div>'; |
158 | 158 | } |
159 | - $html[] = '</div>'; |
|
160 | - $html[] = '</div>'; |
|
159 | + $html[] = '</div>'; |
|
160 | + $html[] = '</div>'; |
|
161 | 161 | $html[] = '</div>'; |
162 | 162 | |
163 | 163 | $this->resultArray['html'] = implode(LF, $html); |
@@ -282,7 +282,7 @@ |
||
282 | 282 | // Try adding or editing |
283 | 283 | $content .= $this->editTaskAction($requestUri); |
284 | 284 | $sectionTitle = $this->getLanguageService()->getLL('action.' . $this->getCurrentAction()); |
285 | - } catch (\LogicException|\UnexpectedValueException|\OutOfBoundsException $e) { |
|
285 | + } catch (\LogicException | \UnexpectedValueException | \OutOfBoundsException $e) { |
|
286 | 286 | // Catching all types of exceptions that were previously handled and |
287 | 287 | // converted to messages |
288 | 288 | $content .= $this->listTasksAction(); |
@@ -2530,7 +2530,7 @@ discard block |
||
2530 | 2530 | if (in_array('table', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableSelectATable']) { |
2531 | 2531 | $out[] = '<div class="form-group">'; |
2532 | 2532 | $out[] = ' <label for="SET[queryTable]">Select a table:</label>'; |
2533 | - $out[] = $this->mkTableSelect('SET[queryTable]', $this->table); |
|
2533 | + $out[] = $this->mkTableSelect('SET[queryTable]', $this->table); |
|
2534 | 2534 | $out[] = '</div>'; |
2535 | 2535 | } |
2536 | 2536 | if ($this->table) { |
@@ -2570,19 +2570,19 @@ discard block |
||
2570 | 2570 | if (in_array('fields', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableSelectFields']) { |
2571 | 2571 | $out[] = '<div class="form-group form-group-with-button-addon">'; |
2572 | 2572 | $out[] = ' <label for="SET[queryFields]">Select fields:</label>'; |
2573 | - $out[] = $this->mkFieldToInputSelect('SET[queryFields]', $this->extFieldLists['queryFields']); |
|
2573 | + $out[] = $this->mkFieldToInputSelect('SET[queryFields]', $this->extFieldLists['queryFields']); |
|
2574 | 2574 | $out[] = '</div>'; |
2575 | 2575 | } |
2576 | 2576 | if (in_array('query', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableMakeQuery']) { |
2577 | 2577 | $out[] = '<div class="form-group">'; |
2578 | 2578 | $out[] = ' <label>Make Query:</label>'; |
2579 | - $out[] = $queryCode; |
|
2579 | + $out[] = $queryCode; |
|
2580 | 2580 | $out[] = '</div>'; |
2581 | 2581 | } |
2582 | 2582 | if (in_array('group', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableGroupBy']) { |
2583 | 2583 | $out[] = '<div class="form-group form-inline">'; |
2584 | 2584 | $out[] = ' <label for="SET[queryGroup]">Group By:</label>'; |
2585 | - $out[] = $this->mkTypeSelect('SET[queryGroup]', $this->extFieldLists['queryGroup'], ''); |
|
2585 | + $out[] = $this->mkTypeSelect('SET[queryGroup]', $this->extFieldLists['queryGroup'], ''); |
|
2586 | 2586 | $out[] = '</div>'; |
2587 | 2587 | } |
2588 | 2588 | if (in_array('order', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableOrderBy']) { |
@@ -2590,20 +2590,20 @@ discard block |
||
2590 | 2590 | $orderBy = []; |
2591 | 2591 | $orderBy[] = $this->mkTypeSelect('SET[queryOrder]', $orderByArr[0], ''); |
2592 | 2592 | $orderBy[] = '<div class="form-check">'; |
2593 | - $orderBy[] = BackendUtility::getFuncCheck(0, 'SET[queryOrderDesc]', $modSettings['queryOrderDesc'], '', '', 'id="checkQueryOrderDesc"'); |
|
2593 | + $orderBy[] = BackendUtility::getFuncCheck(0, 'SET[queryOrderDesc]', $modSettings['queryOrderDesc'], '', '', 'id="checkQueryOrderDesc"'); |
|
2594 | 2594 | $orderBy[] = ' <label class="form-check-label" for="checkQueryOrderDesc">Descending</label>'; |
2595 | 2595 | $orderBy[] = '</div>'; |
2596 | 2596 | |
2597 | 2597 | if ($orderByArr[0]) { |
2598 | 2598 | $orderBy[] = $this->mkTypeSelect('SET[queryOrder2]', $orderByArr[1], ''); |
2599 | 2599 | $orderBy[] = '<div class="form-check">'; |
2600 | - $orderBy[] = BackendUtility::getFuncCheck(0, 'SET[queryOrder2Desc]', $modSettings['queryOrder2Desc'], '', '', 'id="checkQueryOrder2Desc"') . ' Descending'; |
|
2600 | + $orderBy[] = BackendUtility::getFuncCheck(0, 'SET[queryOrder2Desc]', $modSettings['queryOrder2Desc'], '', '', 'id="checkQueryOrder2Desc"') . ' Descending'; |
|
2601 | 2601 | $orderBy[] = ' <label class="form-check-label" for="checkQueryOrder2Desc">Descending</label>'; |
2602 | 2602 | $orderBy[] = '</div>'; |
2603 | 2603 | } |
2604 | 2604 | $out[] = '<div class="form-group form-inline">'; |
2605 | 2605 | $out[] = ' <label>Order By:</label>'; |
2606 | - $out[] = implode(LF, $orderBy); |
|
2606 | + $out[] = implode(LF, $orderBy); |
|
2607 | 2607 | $out[] = '</div>'; |
2608 | 2608 | } |
2609 | 2609 | if (in_array('limit', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableLimit']) { |
@@ -2637,10 +2637,10 @@ discard block |
||
2637 | 2637 | $out[] = '<div class="form-group">'; |
2638 | 2638 | $out[] = ' <label>Limit:</label>'; |
2639 | 2639 | $out[] = ' <div class="form-inline">'; |
2640 | - $out[] = implode(LF, $limit); |
|
2640 | + $out[] = implode(LF, $limit); |
|
2641 | 2641 | $out[] = ' <div class="btn-group t3js-limit-submit">'; |
2642 | - $out[] = $prevButton; |
|
2643 | - $out[] = $nextButton; |
|
2642 | + $out[] = $prevButton; |
|
2643 | + $out[] = $nextButton; |
|
2644 | 2644 | $out[] = ' </div>'; |
2645 | 2645 | $out[] = ' <div class="btn-group t3js-limit-submit">'; |
2646 | 2646 | $out[] = ' <input type="button" class="btn btn-default" data-value="10" value="10">'; |
@@ -1441,7 +1441,7 @@ discard block |
||
1441 | 1441 | if (in_array('table', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableSelectATable']) { |
1442 | 1442 | $out[] = '<div class="form-group">'; |
1443 | 1443 | $out[] = ' <label for="SET[queryTable]">Select a table:</label>'; |
1444 | - $out[] = $this->mkTableSelect('SET[queryTable]', $this->table); |
|
1444 | + $out[] = $this->mkTableSelect('SET[queryTable]', $this->table); |
|
1445 | 1445 | $out[] = '</div>'; |
1446 | 1446 | } |
1447 | 1447 | if ($this->table) { |
@@ -1481,19 +1481,19 @@ discard block |
||
1481 | 1481 | if (in_array('fields', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableSelectFields']) { |
1482 | 1482 | $out[] = '<div class="form-group form-group-with-button-addon">'; |
1483 | 1483 | $out[] = ' <label for="SET[queryFields]">Select fields:</label>'; |
1484 | - $out[] = $this->mkFieldToInputSelect('SET[queryFields]', $this->extFieldLists['queryFields']); |
|
1484 | + $out[] = $this->mkFieldToInputSelect('SET[queryFields]', $this->extFieldLists['queryFields']); |
|
1485 | 1485 | $out[] = '</div>'; |
1486 | 1486 | } |
1487 | 1487 | if (in_array('query', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableMakeQuery']) { |
1488 | 1488 | $out[] = '<div class="form-group">'; |
1489 | 1489 | $out[] = ' <label>Make Query:</label>'; |
1490 | - $out[] = $queryCode; |
|
1490 | + $out[] = $queryCode; |
|
1491 | 1491 | $out[] = '</div>'; |
1492 | 1492 | } |
1493 | 1493 | if (in_array('group', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableGroupBy']) { |
1494 | 1494 | $out[] = '<div class="form-group form-inline">'; |
1495 | 1495 | $out[] = ' <label for="SET[queryGroup]">Group By:</label>'; |
1496 | - $out[] = $this->mkTypeSelect('SET[queryGroup]', $this->extFieldLists['queryGroup'], ''); |
|
1496 | + $out[] = $this->mkTypeSelect('SET[queryGroup]', $this->extFieldLists['queryGroup'], ''); |
|
1497 | 1497 | $out[] = '</div>'; |
1498 | 1498 | } |
1499 | 1499 | if (in_array('order', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableOrderBy']) { |
@@ -1503,7 +1503,7 @@ discard block |
||
1503 | 1503 | $orderBy[] = '<div class="form-check">'; |
1504 | 1504 | $orderBy[] = BackendUtility::getFuncCheck(0, 'SET[queryOrderDesc]', $modSettings['queryOrderDesc'], '', '', 'id="checkQueryOrderDesc"'); |
1505 | 1505 | $orderBy[] = ' <label class="form-check-label" for="checkQueryOrderDesc">'; |
1506 | - $orderBy[] = 'Descending'; |
|
1506 | + $orderBy[] = 'Descending'; |
|
1507 | 1507 | $orderBy[] = ' </label>'; |
1508 | 1508 | $orderBy[] = '</div>'; |
1509 | 1509 | |
@@ -1512,13 +1512,13 @@ discard block |
||
1512 | 1512 | $orderBy[] = '<div class="form-check">'; |
1513 | 1513 | $orderBy[] = BackendUtility::getFuncCheck(0, 'SET[queryOrder2Desc]', $modSettings['queryOrder2Desc'], '', '', 'id="checkQueryOrder2Desc"'); |
1514 | 1514 | $orderBy[] = ' <label class="form-check-label" for="checkQueryOrder2Desc">'; |
1515 | - $orderBy[] = 'Descending'; |
|
1515 | + $orderBy[] = 'Descending'; |
|
1516 | 1516 | $orderBy[] = ' </label>'; |
1517 | 1517 | $orderBy[] = '</div>'; |
1518 | 1518 | } |
1519 | 1519 | $out[] = '<div class="form-group form-inline">'; |
1520 | 1520 | $out[] = ' <label>Order By:</label>'; |
1521 | - $out[] = implode(LF, $orderBy); |
|
1521 | + $out[] = implode(LF, $orderBy); |
|
1522 | 1522 | $out[] = '</div>'; |
1523 | 1523 | } |
1524 | 1524 | if (in_array('limit', $enableArr) && !$userTsConfig['mod.']['dbint.']['disableLimit']) { |
@@ -1552,10 +1552,10 @@ discard block |
||
1552 | 1552 | $out[] = '<div class="form-group">'; |
1553 | 1553 | $out[] = ' <label>Limit:</label>'; |
1554 | 1554 | $out[] = ' <div class="form-inline">'; |
1555 | - $out[] = implode(LF, $limit); |
|
1555 | + $out[] = implode(LF, $limit); |
|
1556 | 1556 | $out[] = ' <div class="btn-group t3js-limit-submit">'; |
1557 | - $out[] = $prevButton; |
|
1558 | - $out[] = $nextButton; |
|
1557 | + $out[] = $prevButton; |
|
1558 | + $out[] = $nextButton; |
|
1559 | 1559 | $out[] = ' </div>'; |
1560 | 1560 | $out[] = ' <div class="btn-group t3js-limit-submit">'; |
1561 | 1561 | $out[] = ' <input type="button" class="btn btn-default" data-value="10" value="10">'; |