FluidTYPO3\Flux\Service\FluxService::getDefaultViewConfigurationForExtensionKey PHP Method

getDefaultViewConfigurationForExtensionKey() protected method

(e.g. EXT:fluidpages can provide "Resources/Private/Templates/Page" as default templateRootPath)
protected getDefaultViewConfigurationForExtensionKey ( string $extensionKey ) : array
$extensionKey string
return array
    protected function getDefaultViewConfigurationForExtensionKey($extensionKey)
    {
        $extensionKey = ExtensionNamingUtility::getExtensionKey($extensionKey);
        return array(TemplatePaths::CONFIG_TEMPLATEROOTPATHS => array(0 => 'EXT:' . $extensionKey . '/Resources/Private/Templates/'), TemplatePaths::CONFIG_PARTIALROOTPATHS => array(0 => 'EXT:' . $extensionKey . '/Resources/Private/Partials/'), TemplatePaths::CONFIG_LAYOUTROOTPATHS => array(0 => 'EXT:' . $extensionKey . '/Resources/Private/Layouts/'));
    }