stylehub/lib/config.php

17 lines
388 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/";
2024-01-18 11:49:38 +01:00
$routerConfig["endpoint_dir"] = "endpoints/";
2024-01-16 20:55:27 +01:00
$routerConfig["page_dir"] = "pages/";
2024-01-16 21:31:19 +01:00
$routerConfig["protocol"] = "https://";
2024-01-16 20:55:27 +01:00
}