Neos\Neos\Service\BackendRedirectionService::createContext PHP Method

createContext() protected method

Create a ContentContext to be used for the backend redirects.
protected createContext ( string $workspaceName ) : ContentContext
$workspaceName string
return Neos\Neos\Domain\Service\ContentContext
    protected function createContext($workspaceName)
    {
        $contextProperties = array('workspaceName' => $workspaceName, 'invisibleContentShown' => true, 'inaccessibleContentShown' => true);
        return $this->contextFactory->create($contextProperties);
    }