summaryrefslogtreecommitdiffstats
path: root/lib/private/Settings/Admin
Commit message (Collapse)AuthorAgeFilesLines
* add share permissions to settings pageBjoern Schiessle2018-02-271-16/+47
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* Simplify ternary operator statementsMorris Jobke2018-01-261-1/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Update license headersMorris Jobke2017-11-066-0/+12
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Always log cron executionMorris Jobke2017-08-171-1/+0
| | | | | | | | | | | There was a setting to disable the last execution of cron. There is no known problem with this write access and it was also questioned when this feature was build in https://github.com/owncloud/core/pull/7689#issuecomment-38264707 Recently there was also a bug report about a non-visible last cron execution (#6088) - let's better remove this. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* move admin templates to the right placeArthur Schiwon2017-06-276-6/+6
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Remove unused use statementsMorris Jobke2017-04-222-17/+0
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Don't put the SMTP password into the HTML codeJoas Schilling2017-04-181-0/+4
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* feature endorse password for share linksBjoern Schiessle2017-04-031-0/+1
| | | | | | | | works like "enforce password protection", but let the user optionally remove the password protection after the password is set. by Timo Benk Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* Always suggest the overwrite.cli.urlJoas Schilling2017-03-171-6/+15
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* split db logic from settings managerRobin Appelman2016-12-281-4/+4
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* remove old logging sectionRobin Appelman2016-11-211-86/+0
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Move social buttons to bottom on admin pageRoeland Jago Douma2016-11-161-0/+62
| | | | | | 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
|
* add missing encryption modules to settingsArthur Schiwon2016-08-161-0/+13
|
* fix missing parameters in sharing settings pageArthur Schiwon2016-08-161-6/+17
|
* Add unit testsLukas Reschke2016-08-156-8/+29
|
* move mail settings and file handling to additional ones, thus files_external ↵Arthur Schiwon2016-08-132-13/+86
| | | | gets its own section
* added some missed diagnosis outputArthur Schiwon2016-08-121-6/+53
|
* rename IAdmin to ISettings, the interface is not bound to a specific ↵Arthur Schiwon2016-08-115-10/+10
| | | | settings scope
* 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-095-0/+430
* interfaces for the Admin settings (IAdmin) and section (ISection) * SettingsManager service * example setup with LDAP app