‪TYPO3CMS  9.5
ContentContentObject.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 
20 
25 {
32  public function ‪render($conf = [])
33  {
34  if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
35  return '';
36  }
37 
38  $frontendController = $this->‪getFrontendController();
39  $theValue = '';
40  $originalRec = $frontendController->currentRecord;
41  // If the currentRecord is set, we register, that this record has invoked this function.
42  // It's should not be allowed to do this again then!!
43  if ($originalRec) {
44  ++$frontendController->recordRegister[$originalRec];
45  }
46  $conf['table'] = isset($conf['table.']) ? trim($this->cObj->stdWrap($conf['table'], $conf['table.'])) : trim($conf['table']);
47  $conf['select.'] = !empty($conf['select.']) ? $conf['select.'] : [];
48  $renderObjName = $conf['renderObj'] ?: '<' . $conf['table'];
49  $renderObjKey = $conf['renderObj'] ? 'renderObj' : '';
50  $renderObjConf = $conf['renderObj.'];
51  $slide = isset($conf['slide.']) ? (int)$this->cObj->stdWrap($conf['slide'], $conf['slide.']) : (int)$conf['slide'];
52  if (!$slide) {
53  $slide = 0;
54  }
55  $slideCollect = isset($conf['slide.']['collect.']) ? (int)$this->cObj->stdWrap($conf['slide.']['collect'], $conf['slide.']['collect.']) : (int)$conf['slide.']['collect'];
56  if (!$slideCollect) {
57  $slideCollect = 0;
58  }
59  $slideCollectReverse = isset($conf['slide.']['collectReverse.']) ? (int)$this->cObj->stdWrap($conf['slide.']['collectReverse'], $conf['slide.']['collectReverse.']) : (int)$conf['slide.']['collectReverse'];
60  $slideCollectReverse = (bool)$slideCollectReverse;
61  $slideCollectFuzzy = isset($conf['slide.']['collectFuzzy.'])
62  ? (bool)$this->cObj->stdWrap($conf['slide.']['collectFuzzy'], $conf['slide.']['collectFuzzy.'])
63  : (bool)$conf['slide.']['collectFuzzy'];
64  if (!$slideCollect) {
65  $slideCollectFuzzy = true;
66  }
67  $again = false;
68  $tmpValue = '';
69 
70  do {
71  $records = $this->cObj->getRecords($conf['table'], $conf['select.']);
72  $cobjValue = '';
73  if (!empty($records)) {
74  $this->cObj->currentRecordTotal = count($records);
75  $this->‪getTimeTracker()->‪setTSlogMessage('NUMROWS: ' . count($records));
76 
78  ‪$cObj = GeneralUtility::makeInstance(ContentObjectRenderer::class);
79  ‪$cObj->‪setParent($this->cObj->data, $this->cObj->currentRecord);
80  $this->cObj->currentRecordNumber = 0;
81 
82  foreach ($records as $row) {
83  // Call hook for possible manipulation of database row for cObj->data
84  foreach (‪$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content_content.php']['modifyDBRow'] ?? [] as $className) {
85  $_procObj = GeneralUtility::makeInstance($className);
86  $_procObj->modifyDBRow($row, $conf['table']);
87  }
88  if (!$frontendController->recordRegister[$conf['table'] . ':' . $row['uid']]) {
89  $this->cObj->currentRecordNumber++;
90  ‪$cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
91  $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
92  $this->cObj->‪lastChanged($row['tstamp']);
93  ‪$cObj->‪start($row, $conf['table']);
94  $tmpValue = ‪$cObj->‪cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
95  $cobjValue .= $tmpValue;
96  }
97  }
98  }
99  if ($slideCollectReverse) {
100  $theValue = $cobjValue . $theValue;
101  } else {
102  $theValue .= $cobjValue;
103  }
104  if ($slideCollect > 0) {
105  $slideCollect--;
106  }
107  if ($slide) {
108  if ($slide > 0) {
109  $slide--;
110  }
111  $conf['select.']['pidInList'] = $this->cObj->getSlidePids($conf['select.']['pidInList'], $conf['select.']['pidInList.']);
112  if (isset($conf['select.']['pidInList.'])) {
113  unset($conf['select.']['pidInList.']);
114  }
115  $again = (string)$conf['select.']['pidInList'] !== '';
116  }
117  } while ($again && $slide && ((string)$tmpValue === '' && $slideCollectFuzzy || $slideCollect));
118 
119  $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
120  if ($wrap) {
121  $theValue = $this->cObj->wrap($theValue, $wrap);
122  }
123  if (isset($conf['stdWrap.'])) {
124  $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
125  }
126  // Restore
127  $frontendController->currentRecord = $originalRec;
128  if ($originalRec) {
129  --$frontendController->recordRegister[$originalRec];
130  }
131  return $theValue;
132  }
133 
139  protected function ‪getFrontendController()
140  {
141  return ‪$GLOBALS['TSFE'];
142  }
143 
149  protected function ‪getTimeTracker()
150  {
151  return GeneralUtility::makeInstance(TimeTracker::class);
152  }
153 }
‪TYPO3\CMS\Frontend\ContentObject\ContentContentObject\getFrontendController
‪TypoScriptFrontendController getFrontendController()
Definition: ContentContentObject.php:139
‪TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer\start
‪start($data, $table='')
Definition: ContentObjectRenderer.php:532
‪TYPO3\CMS\Frontend\ContentObject
Definition: AbstractContentObject.php:2
‪TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer\setParent
‪setParent($data, $currentRecord)
Definition: ContentObjectRenderer.php:599
‪TYPO3\CMS\Core\TimeTracker\TimeTracker\setTSlogMessage
‪setTSlogMessage($content, $num=0)
Definition: TimeTracker.php:193
‪TYPO3\CMS\Frontend\ContentObject\ContentContentObject\render
‪string render($conf=[])
Definition: ContentContentObject.php:32
‪TYPO3\CMS\Frontend\ContentObject\ContentContentObject\getTimeTracker
‪TimeTracker getTimeTracker()
Definition: ContentContentObject.php:149
‪TYPO3\CMS\Frontend\ContentObject\AbstractContentObject
Definition: AbstractContentObject.php:24
‪TYPO3\CMS\Frontend\ContentObject\AbstractContentObject\$cObj
‪ContentObjectRenderer $cObj
Definition: AbstractContentObject.php:27
‪TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController
Definition: TypoScriptFrontendController.php:97
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:5
‪TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer\lastChanged
‪lastChanged($tstamp)
Definition: ContentObjectRenderer.php:1375
‪TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer\cObjGetSingle
‪string cObjGetSingle($name, $conf, $TSkey='__')
Definition: ContentObjectRenderer.php:671
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:45
‪TYPO3\CMS\Core\TimeTracker\TimeTracker
Definition: TimeTracker.php:27
‪TYPO3\CMS\Frontend\ContentObject\ContentContentObject
Definition: ContentContentObject.php:25