Neos\Neos\Controller\Backend\BackendController::xliffAsJsonAction PHP 메소드

xliffAsJsonAction() 공개 메소드

Returns the cached json array with the xliff labels
public xliffAsJsonAction ( string $locale ) : string
$locale string
리턴 string
    public function xliffAsJsonAction($locale)
    {
        $this->response->setHeader('Content-Type', 'application/json');
        return $this->xliffService->getCachedJson(new Locale($locale));
    }