Neos\Neos\Domain\Model\PluginViewDefinition::__construct PHP Метод

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

public __construct ( NodeType $pluginNodeType, string $name, array $configuration )
$pluginNodeType Neos\ContentRepository\Domain\Model\NodeType
$name string Name of the view
$configuration array the configuration for this node type which is defined in the schema
    public function __construct(NodeType $pluginNodeType, $name, array $configuration)
    {
        $this->pluginNodeType = $pluginNodeType;
        $this->name = $name;
        $this->configuration = $configuration;
    }