‪TYPO3CMS  9.5
UserContentObject.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  */
18 
23 {
30  public function ‪render($conf = [])
31  {
32  if (!is_array($conf) || empty($conf)) {
33  $this->‪getTimeTracker()->‪setTSlogMessage('USER without configuration.', 2);
34  return '';
35  }
36  $content = '';
37  if ($this->cObj->getUserObjectType() === false) {
38  // Come here only if we are not called from $TSFE->INTincScript_process()!
39  $this->cObj->setUserObjectType(‪ContentObjectRenderer::OBJECTTYPE_USER);
40  }
41  $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
42  if ($this->cObj->doConvertToUserIntObject) {
43  $this->cObj->doConvertToUserIntObject = false;
44  $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
45  } else {
46  $content .= $tempContent;
47  // Only executed when the element is not converted to USER_INT
48  if (isset($conf['stdWrap.'])) {
49  $content = $this->cObj->stdWrap($content, $conf['stdWrap.']);
50  }
51  }
52  $this->cObj->setUserObjectType(false);
53  return $content;
54  }
55 
59  protected function ‪getTimeTracker()
60  {
61  return GeneralUtility::makeInstance(TimeTracker::class);
62  }
63 }
‪TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer\OBJECTTYPE_USER
‪const OBJECTTYPE_USER
Definition: ContentObjectRenderer.php:438
‪TYPO3\CMS\Frontend\ContentObject
Definition: AbstractContentObject.php:2
‪TYPO3\CMS\Frontend\ContentObject\UserContentObject\render
‪string render($conf=[])
Definition: UserContentObject.php:30
‪TYPO3\CMS\Core\TimeTracker\TimeTracker\setTSlogMessage
‪setTSlogMessage($content, $num=0)
Definition: TimeTracker.php:193
‪TYPO3\CMS\Frontend\ContentObject\UserContentObject
Definition: UserContentObject.php:23
‪TYPO3\CMS\Frontend\ContentObject\AbstractContentObject
Definition: AbstractContentObject.php:24
‪TYPO3\CMS\Frontend\ContentObject\UserContentObject\getTimeTracker
‪TimeTracker getTimeTracker()
Definition: UserContentObject.php:59
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:45
‪TYPO3\CMS\Core\TimeTracker\TimeTracker
Definition: TimeTracker.php:27