4in1_ws_web/classes/handler/AboutHandler.php
2023-12-30 23:29:31 +00:00

16 lines
312 B
PHP

<?php
namespace handler;
use Response;
class AboutHandler extends \RequestHandler {
public function get(): Response {
global $config;
$this->skin->title = $this->lang['contacts'];
return $this->skin->renderPage('main/contacts',
email: $config['admin_email']);
}
}