Ejemplo n.º 1
0
 public function render($name = null, $data = array(), $status = null)
 {
     $contentView = new \Slim\View();
     $data = array_merge($data, (array) $this->templateData);
     if (isset($this->environment['slim.flash'])) {
         $contentView->setData('flash', $this->environment['slim.flash']);
         $this->templateData->flash = $this->environment['slim.flash'];
     }
     $contentView->setTemplatesDirectory($this->appRoot() . '/views');
     $contentView->appendData((array) $this->templateData);
     $contentView->appendData($data);
     if ($name !== null) {
         $this->templateData->content = $contentView->fetch(rtrim($name, '.php') . '.php');
     } else {
         $this->templateData->content = '';
     }
     // Call before render
     if (method_exists($this, 'beforeRender') && !$this->beforeRenderCalled) {
         $this->beforeRender();
     }
     parent::render('template-' . rtrim($this->template, '.php') . '.php', (array) $this->templateData, $status);
 }
Ejemplo n.º 2
0
 public function testSetDataInvalidArgument()
 {
     $this->setExpectedException('InvalidArgumentException');
     $view = new \Slim\View();
     $view->setData('foo');
 }