* @license http://files.froxlor.org/misc/COPYING.txt GPLv2 */ function view($template, $attributes) { $view = file_get_contents(dirname(__DIR__) . '/templates/' . $template); return str_replace(array_keys($attributes), array_values($attributes), $view); } function lng(string $identifier, array $arguments = []) { return \Froxlor\Language::getTranslation($identifier, $arguments); }