*/ call_user_func(function() { $classLoader = require __DIR__ . '/contrib/vendor/autoload.php'; (new \TYPO3\CMS\Backend\Http\Application($classLoader))->run(function() { \TYPO3\CMS\Core\Utility\GeneralUtility::deprecationLog('Usage of alt_file_navframe.php is deprecated since TYPO3 CMS 7, and will be removed in TYPO3 CMS 8'); // Make instance if it is not an AJAX call if (!(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_AJAX)) { $fileSystemNavigationFrameController = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Backend\Controller\FileSystemNavigationFrameController::class); $fileSystemNavigationFrameController->initPage(); $fileSystemNavigationFrameController->main(); $fileSystemNavigationFrameController->printContent(); } }); });