Files
scummvm-web/include/Pages/ExceptionsPage.php
T
2019-01-22 19:49:58 -05:00

24 lines
573 B
PHP

<?php
namespace ScummVM\Pages;
class ExceptionsPage extends \ScummVM\Controller
{
public function __construct()
{
parent::__construct();
$this->template = 'components/exception.tpl';
}
/* Display the index page. */
public function index($exception)
{
return $this->renderPage(
array(
'title' => $this->getConfigVars('exceptionsTitle'),
'content_title' => $this->getConfigVars('exceptionsContentTitle'),
'exception' => $exception,
)
);
}
}