blob: c60479d1cb32a3a1d9b9afe9dc775e5cc1f714bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
namespace handler;
use Response;
class Contacts extends \RequestHandler {
public function get(): Response {
global $config;
$this->skin->title = $this->lang['contacts'];
return $this->skin->renderPage('main/contacts',
email: $config['admin_email']);
}
}
|