FluidTYPO3\Fluidpages\Backend\BackendLayoutDataProvider::getBackendLayout PHP Method

getBackendLayout() public method

Gets a backend layout by (regular) identifier.
public getBackendLayout ( string $identifier, integer $pageUid ) : BackendLayout
$identifier string
$pageUid integer
return BackendLayout
    public function getBackendLayout($identifier, $pageUid)
    {
        $configuration = $this->getBackendLayoutConfiguration($pageUid);
        $configuration = $this->ensureDottedKeys($configuration);
        $configString = $this->encodeTypoScriptArray($configuration);
        $backendLayout = new CoreBackendLayout($identifier, 'Fluidpages', $configString);
        return $backendLayout;
    }