TYPO3 CMS  TYPO3_6-2
index.php
Go to the documentation of this file.
1 <?php
20 define('TYPO3_PROCEED_IF_NO_USER', 1);
21 require __DIR__ . '/init.php';
22 
23 // This is a deprecation layer for extensions registered as submodules
24 // of func and info module: Those modules now use mod.php as entry
25 // points and not own index.php anymore, not adapted extensions will
26 // therefor route to this script here. The code sorts out these script
27 // calls and redirects to mod.php.
28 // @deprecated since 6.2, remove two versions later.
29 if (!empty($_SERVER['HTTP_REFERER'])) {
30  $typo3RequestDir = \TYPO3\CMS\Core\Utility\GeneralUtility::getIndpEnv('TYPO3_REQUEST_DIR');
31  if (strpos($_SERVER['HTTP_REFERER'], $typo3RequestDir . 'mod.php') === 0) {
32  parse_str(substr($_SERVER['HTTP_REFERER'], strpos($_SERVER['HTTP_REFERER'], '?') + 1), $referrerParameters);
33  // As of now, only web_info and web_func have been converted and need the compatibility layer
34  if (!empty($referrerParameters['M']) && in_array($referrerParameters['M'], array('web_info', 'web_func'), TRUE)) {
36  'Module ' . $referrerParameters['M'] . ' called index.php. This is deprecated since TYPO3 6.2, use' .
37  ' BackendUtility::getModuleUrl() instead to get the target for your call.'
38  );
39  parse_str($_SERVER['QUERY_STRING'], $queryParameters);
40  header('Location: ' . \TYPO3\CMS\Backend\Utility\BackendUtility::getModuleUrl($referrerParameters['M'], $queryParameters, FALSE, TRUE));
41  exit;
42  }
43  unset($referrerParameters);
44  }
45  unset($typo3RequestDir);
46 }
47 
48 $loginController = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Backend\\Controller\\LoginController');
49 $loginController->main();
50 $loginController->printContent();
if(!empty($_SERVER['HTTP_REFERER'])) $loginController
Definition: index.php:48