22 lines
339 B
PHP
22 lines
339 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
*
|
||
|
* Website configuration file. Edit it carefuly
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* $ORIGINAL_URL
|
||
|
* IF WEBSITE RUN IN A SUBFOLDER
|
||
|
* /!\ ONLY FOR DEVELOPPEMENT /!\
|
||
|
*/
|
||
|
$ORIGINAL_URL = "/gnousdoteu-php/public";
|
||
|
|
||
|
/*
|
||
|
* $DEFAULT_LANGUAGE
|
||
|
* Default language shown in the website
|
||
|
* Values : "fr" or "en" type string
|
||
|
*/
|
||
|
$DEFAULT_LANGUAGE = "fr";
|