summaryrefslogtreecommitdiffstats
path: root/lib/public/Settings
Commit message (Collapse)AuthorAgeFilesLines
* 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