summaryrefslogtreecommitdiffstats
path: root/apps/files_external/service/storagesservice.php
Commit message (Collapse)AuthorAgeFilesLines
* Fix language level incompatibiltiesLukas Reschke2015-04-081-2/+4
| | | | | | Arbitrary expressions in empty are allowed in PHP 5.5 ands upwards. Seems to only affect master. Fixed https://github.com/owncloud/core/issues/15463
* Update license headersJenkins for ownCloud2015-03-261-4/+17
|
* Fix PHPDoc in files_external, add missing tagVincent Petry2015-03-171-5/+12
| | | | | | Fix various PHPDoc issues in external storage app. Added missing NoAdminRequired tag
* Generate storage config ids when missingVincent Petry2015-03-161-29/+101
| | | | | | | | When reading in old mount.json files, they do not contain config ids. Since these are needed to be able to use the UI and the new service classes, these will be generated automatically. The config grouping is based on a config hash.
* Mount options for ext storage are now passed aroundVincent Petry2015-03-131-0/+7
| | | | | | The mount options are now passed to the UI and stored in a hidden field. The ext storage controllers and services also know how to load/save them from the legacy config.
* Use storage id + appframework for ext storage CRUDVincent Petry2015-03-121-0/+303
- Added StorageConfig class to replace ugly arrays - Implemented StorageService and StorageController for Global and User storages - Async status checking for storages (from Xenopathic) - Auto-generate id for external storage configs (not the same as storage_id) - Refactor JS classes for external storage settings, this mostly moves/encapsulated existing global event handlers into the MountConfigListView class. - Added some JS unit tests for the external storage UI