‪TYPO3CMS  10.4
UserInternalContentObject.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
22 {
29  public function ‪render($conf = [])
30  {
31  $this->cObj->setUserObjectType(‪ContentObjectRenderer::OBJECTTYPE_USER_INT);
32  $tsfe = $this->‪getTypoScriptFrontendController();
33  $substKey = 'INT_SCRIPT.' . $tsfe->uniqueHash();
34  $content = '<!--' . $substKey . '-->';
35  $tsfe->config['INTincScript'][$substKey] = [
36  'conf' => $conf,
37  'cObj' => serialize($this->cObj),
38  'type' => 'FUNC'
39  ];
40  $this->cObj->setUserObjectType(false);
41  return $content;
42  }
43 
48  {
49  return ‪$GLOBALS['TSFE'];
50  }
51 }
‪TYPO3\CMS\Frontend\ContentObject\UserInternalContentObject\getTypoScriptFrontendController
‪TYPO3 CMS Frontend Controller TypoScriptFrontendController getTypoScriptFrontendController()
Definition: UserInternalContentObject.php:47
‪TYPO3\CMS\Frontend\ContentObject
Definition: AbstractContentObject.php:16
‪TYPO3\CMS\Frontend\ContentObject\UserInternalContentObject\render
‪string render($conf=[])
Definition: UserInternalContentObject.php:29
‪TYPO3\CMS\Frontend\ContentObject\UserInternalContentObject
Definition: UserInternalContentObject.php:22
‪TYPO3\CMS\Frontend\ContentObject\AbstractContentObject
Definition: AbstractContentObject.php:25
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:5
‪TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer\OBJECTTYPE_USER_INT
‪const OBJECTTYPE_USER_INT
Definition: ContentObjectRenderer.php:430