Inheritance: implements Neos\Flow\Mvc\View\ViewInterface
Exemple #1
0
 /**
  * Reset runtime cache if an option is changed
  *
  * @param string $optionName
  * @param mixed $value
  * @return void
  */
 public function setOption($optionName, $value)
 {
     $this->fusionPath = null;
     parent::setOption($optionName, $value);
 }
 /**
  * Reset runtime cache if an option is changed
  *
  * @param string $optionName
  * @param mixed $value
  * @return void
  */
 public function setOption($optionName, $value)
 {
     $this->typoScriptPath = null;
     parent::setOption($optionName, $value);
 }
 /**
  * Clear the cached runtime instance on assignment of variables
  *
  * @param string $key
  * @param mixed $value
  * @return TypoScriptView
  */
 public function assign($key, $value)
 {
     $this->typoScriptRuntime = null;
     return parent::assign($key, $value);
 }