Neos\Fusion\View\FusionView::getPackageKey PHP Méthode

getPackageKey() protected méthode

Otherwise, the current request is taken and the controller package key is extracted from there.
protected getPackageKey ( ) : string
Résultat 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();
        }
    }