Neos\Fusion\View\FusionView::getPackageKey PHP Метод

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

Otherwise, the current request is taken and the controller package key is extracted from there.
protected getPackageKey ( ) : string
Результат string the package key to load TypoScript from
    protected function getPackageKey()
    {
        $packageKey = $this->getOption('packageKey');
        if ($packageKey !== null) {
            return $packageKey;
        } else {
            /** @var $request ActionRequest */
            $request = $this->controllerContext->getRequest();
            return $request->getControllerPackageKey();
        }
    }