Neos\Neos\Service\Controller\UserPreferenceController::indexAction PHP Метод

indexAction() публичный Метод

public indexAction ( ) : string
Результат string json encoded user preferences
    public function indexAction()
    {
        $this->response->setHeader('Content-Type', 'application/json');
        return json_encode($this->userService->getCurrentUser()->getPreferences()->getPreferences());
    }
UserPreferenceController