Exemple #1
0
 /**
  * Render a view script (optionally to a named response segment)
  *
  * Sets the noRender flag to true when called.
  *
  * @param  string $script
  * @param  string $name
  * @return void
  */
 public function renderScript($script, $name = null)
 {
     if (null === $name) {
         $name = $this->getResponseSegment();
     }
     $this->getResponse()->appendBody($this->view->render($script), $name);
     $this->setNoRender();
 }