aboutsummaryrefslogtreecommitdiffstats
path: root/core/configuration-example.php
AgeCommit message (Collapse)AuthorFilesLines
2019-10-29Remove PHP closing tags and add LF to text filesThomas Lange1-1/+0
Remove the unnecessary PHP closing tags and ensure that *all* text files ending with a LF character.
2019-10-16Use strftime() with locale supportThomas Lange1-0/+2
This commit changes the parseDatetime() function to use strftime() with locale support to replace the day-and-month name related parts within the format string. The strftime() function uses the locale defined by the LC_TIME or LC_ALL environment variable which can be set with PHPs own setlocale() function within the configuration.php.
2019-04-26Rename "standard" template to "default"Thomas Lange1-1/+1
2017-11-24Fixed a spelling mistake in several comments:Thomas Lange1-2/+2
It's called "override" instead of "overwrite" in those contexts.
2017-10-23An overwrite mechanism for the application's configuration has been ↵Thomas Lange1-83/+8
implemented. This makes the configuration.php much cleaner and you only have to define configuration values if the default values doesn't satisfy you. In addition, it makes it easier to implement new configuration values to the core without the need, that the users have to update their personal configuration.php files manually.
2017-03-10Several changes have been made in this commit, which together with the ↵v1.1Thomas Lange1-26/+26
previous commits result in version 1.1: + The rules for the Apache and nginx configuration have been changed and redirects now all requests to the index.php. + A router class has been added which now handles all requests that arrives at the application on the index.php. + Short-hand functions "PAGE", "POST" and "USER" for use in templates added to get specific item data by ID. + More language variables have been added to the core language.
2017-03-04Use environment variable "REQUEST_SCHEME" instead of "HTTPS" to determine ↵Thomas Lange1-1/+1
the current used protocol.
2017-02-24Initial commit.v1.0Thomas Lange1-0/+103