1<?php
2namespace TYPO3\CMS\Frontend\ContentObject;
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 */
16use TYPO3\CMS\Core\TimeTracker\TimeTracker;
17use TYPO3\CMS\Core\Utility\GeneralUtility;
18
19/**
20 * Contains USER class object.
21 */
22class UserContentObject extends AbstractContentObject
23{
24    /**
25     * Rendering the cObject, USER
26     *
27     * @param array $conf Array of TypoScript properties
28     * @return string Output
29     */
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
56    /**
57     * @return TimeTracker
58     */
59    protected function getTimeTracker()
60    {
61        return GeneralUtility::makeInstance(TimeTracker::class);
62    }
63}
64