TYPO3 CMS  TYPO3_8-7
ElementBrowserFramesetController.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
24 
29 {
35  public $content;
36 
40  protected $pageRenderer = null;
41 
45  public function __construct()
46  {
47  $GLOBALS['SOBE'] = $this;
48  }
49 
58  public function mainAction(ServerRequestInterface $request, ResponseInterface $response)
59  {
60  $this->main();
61 
62  $response->getBody()->write($this->content);
63  return $response;
64  }
65 
70  public function main()
71  {
72  // Setting GPvars:
73  $mode = GeneralUtility::_GP('mode');
74  $bparams = GeneralUtility::_GP('bparams');
75  $moduleUrl = BackendUtility::getModuleUrl('wizard_element_browser') . '&mode=';
76  $documentTemplate = $this->getDocumentTemplate();
77  $documentTemplate->JScode = GeneralUtility::wrapJS('
78  function closing() { //
79  close();
80  }
81  function setParams(mode,params) { //
82  parent.content.location.href = ' . GeneralUtility::quoteJSvalue($moduleUrl) . '+mode+"&bparams="+params;
83  }
84  if (!window.opener) {
85  alert("ERROR: Sorry, no link to main window... Closing");
86  close();
87  }
88  ');
89 
90  // build the header part
91  $documentTemplate->startPage($this->getLanguageService()->sL('LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:TYPO3_Element_Browser'));
92 
93  // URL for the inner main frame:
94  $url = $moduleUrl . rawurlencode($mode) . '&bparams=' . rawurlencode($bparams);
95 
96  // Create the frameset for the window
97  // Formerly there were a ' onunload="closing();"' in the <frameset> tag - but it failed on Safari browser on Mac unless the handler was "onUnload"
98  $this->content = $this->getPageRenderer()->render(PageRenderer::PART_HEADER) .
99  '<frameset rows="*,1" framespacing="0" frameborder="0" border="0">
100  <frame name="content" src="' . htmlspecialchars($url) . '" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" noresize="noresize" />
101  <frame name="menu" src="' . htmlspecialchars(BackendUtility::getModuleUrl('dummy')) . '" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" noresize="noresize" />
102  </frameset>
103  </html>
104  ';
105  }
106 
110  protected function getDocumentTemplate()
111  {
112  return $GLOBALS['TBE_TEMPLATE'];
113  }
114 
118  protected function getLanguageService()
119  {
120  return $GLOBALS['LANG'];
121  }
122 
126  protected function getPageRenderer()
127  {
128  if ($this->pageRenderer === null) {
129  $this->pageRenderer = GeneralUtility::makeInstance(PageRenderer::class);
130  }
131 
132  return $this->pageRenderer;
133  }
134 }
static makeInstance($className,... $constructorArguments)
mainAction(ServerRequestInterface $request, ResponseInterface $response)
if(TYPO3_MODE==='BE') $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tsfebeuserauth.php']['frontendEditingController']['default']