FluidTYPO3\Flux\Provider\AbstractProvider::getTemplatePathAndFilename PHP Méthode

getTemplatePathAndFilename() public méthode

public getTemplatePathAndFilename ( array $row ) : string | null
$row array
Résultat string | null
    public function getTemplatePathAndFilename(array $row)
    {
        unset($row);
        if (0 === strpos($this->templatePathAndFilename, 'EXT:') || 0 !== strpos($this->templatePathAndFilename, '/')) {
            $path = GeneralUtility::getFileAbsFileName($this->templatePathAndFilename);
            if (TRUE === empty($path)) {
                return NULL;
            }
            return $path;
        }
        return $this->templatePathAndFilename;
    }