TYPO3 CMS  TYPO3_6-2
alt_file_navframe.php
Go to the documentation of this file.
1 <?php
20 require_once 'init.php';
21 
22 // Make instance if it is not an AJAX call
23 if (!(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_AJAX)) {
24  $fileSystemNavigationFrameController = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Backend\\Controller\\FileSystemNavigationFrameController');
25  $fileSystemNavigationFrameController->initPage();
26  $fileSystemNavigationFrameController->main();
27  $fileSystemNavigationFrameController->printContent();
28 }