summaryrefslogtreecommitdiffstats
path: root/lib/private/Settings
Commit message (Collapse)AuthorAgeFilesLines
* Add the icon for the default sectionsJoas Schilling2017-01-192-10/+30
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* phpdocRobin Appelman2017-01-021-4/+23
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* split db logic from settings managerRobin Appelman2016-12-283-142/+204
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* remove old logging sectionRobin Appelman2016-11-212-92/+0
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Move social buttons to bottom on admin pageRoeland Jago Douma2016-11-162-0/+64
| | | | | | For #2134 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Show a hint for system based cron user nameMorris Jobke2016-11-031-0/+2
| | | | | | | | | * makes it easier to setup cron job * gives hints for PHP documentation * disables the cron setting if requirements not met * fixes #1989 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* remove 'send mail notification' option from sharing, replaced by ↵Bjoern Schiessle2016-11-021-2/+0
| | | | | | send-by-mail feature Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* Adding a optional disclaimer to the anonymous upload pageMorris Jobke2016-09-081-0/+1
|
* Correctly remove admin sections and settingsJoas Schilling2016-09-061-3/+3
|
* fix wrong var nameArthur Schiwon2016-08-221-1/+1
|
* enlist only registered sections that also have settings registered toArthur Schiwon2016-08-221-4/+8
|
* add missing encryption modules to settingsArthur Schiwon2016-08-161-0/+13
|
* fix missing parameters in sharing settings pageArthur Schiwon2016-08-161-6/+17
|
* check registered sections and settings after an app got updated to garbage ↵Arthur Schiwon2016-08-162-0/+122
| | | | collect orphaned classes
* attempt to remove section and settings entries when an app got disabledArthur Schiwon2016-08-161-0/+33
|
* Add unit testsLukas Reschke2016-08-158-26/+57
|
* move mail settings and file handling to additional ones, thus files_external ↵Arthur Schiwon2016-08-133-13/+91
| | | | gets its own section
* move systemstags to sharign section, drop collaboration sectionArthur Schiwon2016-08-131-1/+0
|
* change casing in section display namesArthur Schiwon2016-08-131-3/+3
|
* added some missed diagnosis outputArthur Schiwon2016-08-122-9/+64
|
* adjust systemtags appArthur Schiwon2016-08-111-1/+1
|
* adjust Theming appArthur Schiwon2016-08-111-1/+0
|
* rename IAdmin to ISettings, the interface is not bound to a specific ↵Arthur Schiwon2016-08-116-20/+20
| | | | settings scope
* fixes, improvements, and another app:Arthur Schiwon2016-08-111-9/+58
| | | | | | | * setupSettings now also triggered on enable * fixes detection of present admin section or settings in the DB * add update routine in such cases * encryption app migrated
* more admin page splitup improvementsArthur Schiwon2016-08-105-40/+20
| | | | | | | | | | * bump version to ensure tables are created * make updatenotification app use settings api * change IAdmin::render() to getForm() and change return type from Template to TemplateResponse * adjust User_LDAP accordingly, as well as built-in forms * add IDateTimeFormatter to AppFramework/DependencyInjection/DIContainer.php. This is important so that \OC::$server->query() is able to resolve the constructor parameters. We should ensure that all OCP/* stuff that is available from \OC::$server is available here. Kudos to @LukasReschke * make sure apps that have settings info in their info.xml are loaded before triggering adding the settings setup method
* Initial work on Apps page split:Arthur Schiwon2016-08-097-0/+804
* interfaces for the Admin settings (IAdmin) and section (ISection) * SettingsManager service * example setup with LDAP app