Neos\Neos\Service\PluginService::getPluginNodes PHP Метод

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

Returns an array of all available plugin nodes
public getPluginNodes ( ContentContext $context ) : array
$context Neos\Neos\Domain\Service\ContentContext current content context, see class doc comment for details
Результат array
    public function getPluginNodes(ContentContext $context)
    {
        $pluginNodeTypes = $this->nodeTypeManager->getSubNodeTypes('Neos.Neos:Plugin', false);
        return $this->getNodes(array_keys($pluginNodeTypes), $context);
    }