Пример #1
0
 /**
  * Get view/template response
  *
  * @return string
  *
  * @since  1.0.0
  * @author Dennis Eichhorn <*****@*****.**>
  */
 public function render()
 {
     $this->l11n = $this->response->getL11n();
     ob_start();
     /** @noinspection PhpIncludeInspection */
     include realpath(__DIR__ . '/../..' . $this->template . '.tpl.php');
     return ob_get_clean();
 }