Neos\Neos\Domain\Service\TypoScriptService::getTypoScriptIncludes PHP Метод

getTypoScriptIncludes() защищенный Метод

Concatenate the given TypoScript resources with include statements
protected getTypoScriptIncludes ( array $typoScriptResources ) : string
$typoScriptResources array An array of TypoScript resource URIs
Результат string A string of include statements for all resources
    protected function getTypoScriptIncludes(array $typoScriptResources)
    {
        $code = chr(10);
        foreach ($typoScriptResources as $typoScriptResource) {
            $code .= 'include: ' . (string) $typoScriptResource . chr(10);
        }
        $code .= chr(10);
        return $code;
    }