summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/frontenddefinitiontrait.php
Commit message (Collapse)AuthorAgeFilesLines
* Move remaining classes to PSR-4Joas Schilling2016-05-241-158/+0
|
* Allow multiple custom JS filesRobin McCorkell2016-05-031-7/+15
|
* Update author informationLukas Reschke2016-03-011-0/+1
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Dont set null values when validating storage definitionRobin Appelman2016-01-291-3/+5
|
* Happy new year!Thomas Müller2016-01-121-2/+2
|
* deduplicate @xenopathicMorris Jobke2015-10-061-1/+1
|
* Convert string booleans to real booleansRobin McCorkell2015-08-201-2/+2
| | | | | Legacy compatibility, from the days in stable8 when checkbox boolean values were stored as the strings 'true' and 'false'.
* Introduce BackendService for managing external storage backendsRobin McCorkell2015-08-191-0/+147
Backends are registered to the BackendService through new data structures: Backends are concrete classes, deriving from \OCA\Files_External\Lib\Backend\Backend. During construction, the various configuration parameters of the Backend can be set, in a design similar to Symfony Console. DefinitionParameter stores a parameter configuration for an external storage: name of parameter, human-readable name, type of parameter (text, password, hidden, checkbox), flags (optional or not). Storages in the StoragesController now get their parameters validated server-side (fixes a TODO).