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