Networking\InitCmsBundle\Controller\FrontendPageController::viewLiveAction PHP Method

viewLiveAction() public method

View the website in Live mode
public viewLiveAction ( Request $request, string $locale, $path = null ) : RedirectResponse
$request Symfony\Component\HttpFoundation\Request
$locale string
return Symfony\Component\HttpFoundation\RedirectResponse
    public function viewLiveAction(Request $request, $locale, $path = null)
    {
        $request->setLocale($locale);
        return $this->changeViewMode($request, PageInterface::STATUS_PUBLISHED, $path);
    }