Neos\Neos\View\TypoScriptView::setTypoScriptPath PHP Méthode

setTypoScriptPath() public méthode

Set the TypoScript path to use for rendering the node given in "value"
public setTypoScriptPath ( string $typoScriptPath ) : void
$typoScriptPath string
Résultat void
    public function setTypoScriptPath($typoScriptPath)
    {
        $this->typoScriptPath = $typoScriptPath;
    }

Usage Example

Exemple #1
0
 /**
  * Checks if the optionally given node context path, affected node context path and typoscript path are set
  * and overrides the rendering to use those. Will also add a "X-Neos-AffectedNodePath" header in case the
  * actually affected node is different from the one routing resolved.
  * This is used in out of band rendering for the backend.
  *
  * @return void
  * @throws NodeNotFoundException
  */
 protected function overrideViewVariablesFromInternalArguments()
 {
     if (($nodeContextPath = $this->request->getInternalArgument('__nodeContextPath')) !== null) {
         $node = $this->propertyMapper->convert($nodeContextPath, NodeInterface::class);
         if (!$node instanceof NodeInterface) {
             throw new NodeNotFoundException(sprintf('The node with context path "%s" could not be resolved', $nodeContextPath), 1437051934);
         }
         $this->view->assign('value', $node);
     }
     if (($affectedNodeContextPath = $this->request->getInternalArgument('__affectedNodeContextPath')) !== null) {
         $this->response->setHeader('X-Neos-AffectedNodePath', $affectedNodeContextPath);
     }
     if (($typoScriptPath = $this->request->getInternalArgument('__typoScriptPath')) !== null) {
         $this->view->setTypoScriptPath($typoScriptPath);
     }
 }