Meet Neos, Hamburg 2015 - Wie kann mit Neos aus einer Website eine Applikation entstehen? Ohne viel Code können viele Anforderungen effizient mit Nodes (Content) implementiert werden.
= 'Demo\ContentApps\View\PluginTypoScriptView'; /** * Display a start page for the product */ public function indexAction() { /** @var NodeInterface $node */ $node = $this->request->getInternalArgument('__node'); if (!$node->getNodeType()->isOfType('Demo.ContentApps:Product')) { throw new InvalidNodeException(sprintf('Build plugin needs node of type "Demo.ContentApps:Product", got "%s"', $node->getNodeType()->getName()), 1432633804); } $this->view->assign('node', $node); } ... } Demo\ContentApps\Controller\BuildController Übergabe von Werten via TypoScript Plugin nutzt TypoScript für View Derzeit Custom