diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-10-20 22:49:22 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-10-20 22:49:22 +0200 |
| commit | c14da77997880189e6f4b7012d40dec227b9b225 (patch) | |
| tree | 114dbe1f13d51dcdae2bc9e0e4f69a71178adb31 /htdocs/includes/config.php | |
| parent | d439d65db1c4f56aa5bafa5df6b595855501fcb9 (diff) | |
chore: add php template and includes (config, i18n and utils)
Diffstat (limited to 'htdocs/includes/config.php')
| -rw-r--r-- | htdocs/includes/config.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/htdocs/includes/config.php b/htdocs/includes/config.php new file mode 100644 index 0000000..cf7dba6 --- /dev/null +++ b/htdocs/includes/config.php @@ -0,0 +1,19 @@ +<?php +/** + * Config of demo.armandphilippot.com + * + * @package DemoArmandphilippotCom + * @author Armand Philippot <contact@armandphilippot.com> + * @copyright 2021 Armand Philippot + * @license http://www.opensource.org/licenses/mit-license.php MIT + * @link https://demo.armandphilippot.com/ + * @since 1.0.0 + */ + +/** + * The website will check if the HTTP accepted locales have a matching + * translation. If not, the default locale is "en_US". If you want to + * overwrite the default locale, use this variable. Make sure the translation + * exists. + */ +$dap_default_locale = 'en_US'; |
