aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Settings
Commit message (Collapse)AuthorAgeFilesLines
* Add visibility to all constantsChristoph Wurst2020-04-101-4/+4
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-101-1/+0
| | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2019-12-055-6/+9
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Make it possible to show admin settings for sub adminsChristoph Wurst2019-05-232-1/+37
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Do not cache the settings/sections in the database anymoreJoas Schilling2018-01-291-40/+12
| | | | | | | This caused more troubles then it had benefits, especially when an app got disabled or was removed without being disabled. Signed-off-by: Joas Schilling <coding@schilljs.com>
* Update license headersMorris Jobke2017-11-063-0/+4
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* We're on 13 now…Arthur Schiwon2017-06-261-4/+4
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Adopt DB and Manager to personal settings structureArthur Schiwon2017-06-231-0/+10
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Extend interfacesArthur Schiwon2017-06-231-0/+17
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Allow apps to specify an icon with the sections via the APIJoas Schilling2017-01-192-0/+39
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* check registered sections and settings after an app got updated to garbage ↵Arthur Schiwon2016-08-161-0/+15
| | | | collect orphaned classes
* attempt to remove section and settings entries when an app got disabledArthur Schiwon2016-08-161-0/+14
|
* Add since tags to classLukas Reschke2016-08-113-1/+9
|
* Add missing since annotationsLukas Reschke2016-08-112-0/+5
|
* rename IAdmin to ISettings, the interface is not bound to a specific ↵Arthur Schiwon2016-08-111-1/+4
| | | | settings scope
* more admin page splitup improvementsArthur Schiwon2016-08-101-3/+3
| | | | | | | | | | * 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-093-0/+164
* interfaces for the Admin settings (IAdmin) and section (ISection) * SettingsManager service * example setup with LDAP app