]> git.p6c8.net - jirafeau_mojo42.git/blobdiff - lib/settings.php
[FEATURE] Autogenerate prefix for absolute links
[jirafeau_mojo42.git] / lib / settings.php
index da0d9db5227a69eb3922cf9ed97130e2d4a7d01c..33c76da1d608d818b9c76b429cf9b2e8f4f680ee 100644 (file)
@@ -42,6 +42,15 @@ define ('VAR_LINKS', $cfg['var_root'] . 'links/');
 define ('VAR_ASYNC', $cfg['var_root'] . 'async/');
 define ('VAR_ALIAS', $cfg['var_root'] . 'alias/');
 
+// helping variable to build absolute link to
+// root of the domain without handling the URL scheme
+$absPrefix = parse_url($cfg['web_root'], PHP_URL_PATH);
+if(true === empty($absPrefix)) {
+       // fallback if installation isnt done yet: relative links to same level on the current page
+       $absPrefix = './';
+}
+define ('JIRAFEAU_ABSPREFIX', $absPrefix);
+
 /* Useful constants. */
 if (!defined ('NL')) {
     define ('NL', "\n");

patrick-canterino.de