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

28 lines
545 B
PHP

<?php
namespace ScummVM\Pages;
use ScummVM\Controller;
class ContactPage extends Controller
{
/* Constructor. */
public function __construct()
{
parent::__construct();
$this->template = 'pages/contact.tpl';
}
/* Display the index page. */
public function index()
{
return $this->renderPage(
array(
'title' => $this->getConfigVars('contactTitle'),
'content_title' => $this->getConfigVars('contactContentTitle'),
)
);
}
}