‪TYPO3CMS  9.5
BackendLogModuleBootstrap.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
17 use Psr\Http\Message\ServerRequestInterface;
20 
31 {
37  public function ‪main()
38  {
39  $_GET['tx_belog_system_beloglog']['pageId'] = GeneralUtility::_GP('id');
40  $_GET['tx_belog_system_beloglog']['layout'] = 'Plain';
41  $serverRequest = ‪$GLOBALS['TYPO3_REQUEST'] ?? null;
42  if ($serverRequest instanceof ServerRequestInterface) {
43  ‪$GLOBALS['TYPO3_REQUEST'] = $serverRequest->withQueryParams($_GET);
44  }
45  $options['moduleConfiguration'] = [
46  'extensionName' => 'Belog',
47  'vendorName' => 'TYPO3\\CMS',
48  ];
49  $options['moduleName'] = 'system_BelogLog';
50 
51  $route = GeneralUtility::makeInstance(\‪TYPO3\CMS\Backend\Routing\Route::class, '/system/BelogLog/', $options);
52  $serverRequest = $serverRequest->withAttribute('route', $route);
53  $extbaseBootstrap = GeneralUtility::makeInstance(Bootstrap::class);
54  return $extbaseBootstrap->handleBackendRequest($serverRequest);
55  }
56 }
‪TYPO3
‪TYPO3\CMS\Belog\Module\BackendLogModuleBootstrap\main
‪string main()
Definition: BackendLogModuleBootstrap.php:37
‪TYPO3\CMS\Belog\Module
Definition: BackendLogModuleBootstrap.php:2
‪TYPO3\CMS\Belog\Module\BackendLogModuleBootstrap
Definition: BackendLogModuleBootstrap.php:31
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:5
‪TYPO3\CMS\Extbase\Core\Bootstrap
Definition: Bootstrap.php:31
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:45