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