. */ declare(strict_types=1); use Fisharebest\Webtrees\Application; use Fisharebest\Webtrees\View as WebtreesView; use Fisharebest\Webtrees\Webtrees; /** * Get the IoC container, or fetch something from it. * * @param string|null $abstract * * @return mixed */ function app(string $abstract = null) { if ($abstract === null) { return Application::getInstance(); } return Application::getInstance()->make($abstract); } /** * Generate a URL to an asset file in the public folder. * Add a version parameter for cache-busting. * * @param string $path * * @return string */ function asset(string $path): string { if (Webtrees::STABILITY === '') { $version = Webtrees::VERSION; } else { $version = filemtime(WT_ROOT . 'public/' . $path); } return 'public/' . $path . '?v=' . $version; } /** * Generate a CSRF token form field. * * @return string */ function csrf_field() { return ''; } /** * Get the CSRF token value. * * @return string */ function csrf_token() { return \Fisharebest\Webtrees\Session::getCsrfToken(); } /** * Generate a URL for a named route. * * @param string $route * @param array $parameters * @param bool $absolute * * @return string */ function route(string $route, array $parameters = [], bool $absolute = true): string { $parameters = ['route' => $route] + $parameters; if ($absolute) { return \Fisharebest\Webtrees\Html::url(WT_BASE_URL . 'index.php', $parameters); } return \Fisharebest\Webtrees\Html::url('index.php', $parameters); } /** * Cerate and render a view in a single operation. * * @param string $name * @param mixed[] $data * * @return string */ function view(string $name, array $data = []) { return WebtreesView::make($name, $data); }