aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/Config.php
Commit message (Collapse)AuthorAgeFilesLines
* Plugin system - COREArthurHoaro2015-11-071-129/+134
| | | | see shaarli/Shaarli#275
* PHP: ensure 5.3 compatibility, refactor timezone utilitiesVirtualTam2015-07-131-3/+3
| | | | | | | | | | | | | | | | | Relates to #250 Modifications - supported version - bump required version from 5.1.0 to 5.3.x - update README - add PHP 5.3 to Travis environments - rewrite array declarations: explicitely use array() instead of [] - move checkPHPVersion to application/Utils.php - move timezone functions to application/TimeZone.php - cleanup code - improve test coverage Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* All settings are now stored in config.phpArthurHoaro2015-07-091-0/+129
Isolate functions related to config in Config.php + add unit tests + code_sniffer. options.php is not supported anymore, but its content will be automatically saved into config.php Fixes #shaarli/Shaarli#41 *TODO*: update [documentation](https://github.com/shaarli/Shaarli/wiki#configuration).