ch1p_io_web/handler/Contacts.php
Evgeny Zinoviev f7bfdf58de initial
2022-07-09 19:40:17 +03:00

16 lines
308 B
PHP

<?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']);
}
}