We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| @@ 2221-2233 (lines=13) @@ | ||
| 2218 | // Retain current PID. |
|
| 2219 | $cPid = ($this->cPid ? $this->cPid : $this->pid); |
|
| 2220 | ||
| 2221 | if (!$cPid) { |
|
| 2222 | ||
| 2223 | if (TYPO3_DLOG) { |
|
| 2224 | ||
| 2225 | \TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_document->_getThumbnail()] Invalid PID "'.$cPid.'" for structure definitions', self::$extKey, SYSLOG_SEVERITY_ERROR); |
|
| 2226 | ||
| 2227 | } |
|
| 2228 | ||
| 2229 | $this->thumbnailLoaded = TRUE; |
|
| 2230 | ||
| 2231 | return $this->thumbnail; |
|
| 2232 | ||
| 2233 | } |
|
| 2234 | ||
| 2235 | // Load extension configuration. |
|
| 2236 | $extConf = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][self::$extKey]); |
|
| @@ 2238-2250 (lines=13) @@ | ||
| 2235 | // Load extension configuration. |
|
| 2236 | $extConf = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][self::$extKey]); |
|
| 2237 | ||
| 2238 | if (empty($extConf['fileGrpThumbs'])) { |
|
| 2239 | ||
| 2240 | if (TYPO3_DLOG) { |
|
| 2241 | ||
| 2242 | \TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_document->_getThumbnail()] No fileGrp for thumbnails specified', self::$extKey, SYSLOG_SEVERITY_WARNING); |
|
| 2243 | ||
| 2244 | } |
|
| 2245 | ||
| 2246 | $this->thumbnailLoaded = TRUE; |
|
| 2247 | ||
| 2248 | return $this->thumbnail; |
|
| 2249 | ||
| 2250 | } |
|
| 2251 | ||
| 2252 | $strctId = $this->_getToplevelId(); |
|
| 2253 | ||