adlerka.top/lib/config.php

15 lines
333 B
PHP
Raw Normal View History

2024-01-16 20:55:27 +01:00
<?php
function loadRouterConfig(){
global $routerConfig;
$routerConfig["default_page"] = "domov";
$routerConfig["default_site"] = "home";
$routerConfig["template_dir"] = "templates/";
$routerConfig["page_dir"] = "pages/";
2024-01-16 21:31:19 +01:00
$routerConfig["protocol"] = "https://";
2024-01-16 20:55:27 +01:00
}