aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/dependencytrait.php
Commit message (Collapse)AuthorAgeFilesLines
* Move remaining classes to PSR-4Joas Schilling2016-05-241-41/+0
|
* Happy new year!Thomas Müller2016-01-121-2/+2
|
* deduplicate @xenopathicMorris Jobke2015-10-061-1/+1
|
* Make checkDependencies a real methodRobin McCorkell2015-09-011-46/+1
| | | | | Replace ->setDependencyCheck(callable) with a real method checkDependencies(). A polyfill is available for legacy storages.
* Introduce BackendService for managing external storage backendsRobin McCorkell2015-08-191-0/+86
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).