xref: /webtrees/app/Helpers/functions.php (revision ba5cd25e4897e5ca3268036ab8a43da7979eff40)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2017 webtrees development team
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17use Fisharebest\Webtrees\Html;
18
19/**
20 * Dump the passed variables and end the script.
21 *
22 * @param  mixed
23 *
24 * @return void
25 */
26function dd(...$args): void
27{
28	foreach ($args as $x) {
29		var_dump($x);
30	}
31
32	die(1);
33}
34
35/**
36 * Generate a URL for a named route.
37 *
38 * @param string $route
39 * @param array  $parameters
40 *
41 * @return string
42 */
43function route(string $route, array $parameters = []): string {
44	$parameters = ['route' => $route] + $parameters;
45
46	return Html::url('index.php', $parameters);
47}
48