Neos\Neos\Ui\Aspects\ActivationAspect::disableNewUserInterface PHP Method

disableNewUserInterface() public method

public disableNewUserInterface ( TYPO3\FLOW\AOP\JoinPointInterface $joinPoint ) : mixed
$joinPoint TYPO3\FLOW\AOP\JoinPointInterface the join point
return mixed
    public function disableNewUserInterface(JoinPointInterface $joinPoint)
    {
        $this->contentCache->flush();
        $this->session->start();
        $this->session->putData('__neosEnabled__', false);
    }
ActivationAspect