adding several new parameters

This commit is contained in:
Christian Berendt 2013-07-03 17:58:44 +02:00
parent 6653c2e9cb
commit 32597c380a
1 changed files with 8 additions and 3 deletions

View File

@ -47,9 +47,14 @@ class OC_Mount_Config {
$backends['\OC\Files\Storage\AmazonS3']=array( $backends['\OC\Files\Storage\AmazonS3']=array(
'backend' => 'Amazon S3', 'backend' => 'Amazon S3',
'configuration' => array( 'configuration' => array(
'key' => 'Key', 'key' => 'Access Key',
'secret' => '*Secret', 'secret' => '*Secret Key',
'bucket' => 'Bucket')); 'bucket' => 'Bucket',
'hostname' => 'Hostname (optional)',
'port' => 'Port (optional)',
'region' => 'Region (optional)',
'use_ssl' => '!Enable SSL',
'use_path_style' => '!Enable Path Style'));
$backends['\OC\Files\Storage\Dropbox']=array( $backends['\OC\Files\Storage\Dropbox']=array(
'backend' => 'Dropbox', 'backend' => 'Dropbox',