TYPO3 CMS  TYPO3_6-2
index.php
Go to the documentation of this file.
1 <?php
21 $SOBE = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Info\\Controller\\InfoModuleController');
22 $SOBE->init();
23 // Include files?
24 // @deprecated since 6.2 (see ExtensionManagementUtility::insertModuleFunction)
25 foreach ($SOBE->include_once as $INC_FILE) {
26  include_once $INC_FILE;
27 }
28 // Checking for first level external objects
29 $SOBE->checkExtObj();
30 // Repeat Include files! - if any files has been added by second-level extensions
31 // @deprecated since 6.2 (see ExtensionManagementUtility::insertModuleFunction)
32 foreach ($SOBE->include_once as $INC_FILE) {
33  include_once $INC_FILE;
34 }
35 // Checking second level external objects
36 $SOBE->checkSubExtObj();
37 $SOBE->main();
38 $SOBE->printContent();
$SOBE
Definition: index.php:43