Neos\Neos\Service\BackendRedirectionService::createContext PHP Метод

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

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