. */ declare(strict_types=1); use Fisharebest\Webtrees\Filter; use Fisharebest\Webtrees\Html; /** * Generate a CSRF token form field. * * @return string */ function csrf_field() { return ''; } /** * Escape a string for inclusion within HTML. * * @param $text * * @return string */ function e(string $text): string { return Html::escape($text); } /** * Generate a URL for a named route. * * @param string $route * @param array $parameters * * @return string */ function route(string $route, array $parameters = []): string { $parameters = ['route' => $route] + $parameters; return Html::url('index.php', $parameters); }