Exemplo n.º 1
0
 public function errorTemplateNotFound()
 {
     $this->setInternalServerError();
     $html = new HTMLElement('html');
     $html->addChild('head', $head = new HTMLElement('head'));
     $html->addChild('body', $body = new HTMLElement('body'));
     $body->addChild('h1', $p = new HTMLElement('h1'));
     $p->setValue('Template non trovata<?php echo \'we\'; ?>');
     $this->getViewClass()->setTemplate($html);
 }