2012-03-22 14:56:19 -04:00
|
|
|
<?php
|
|
|
|
|
return array(
|
|
|
|
|
'ftp'=>array(
|
2012-04-13 10:01:20 -04:00
|
|
|
'run'=>false,
|
2012-03-22 14:56:19 -04:00
|
|
|
'host'=>'localhost',
|
|
|
|
|
'user'=>'test',
|
|
|
|
|
'password'=>'test',
|
|
|
|
|
'root'=>'/test',
|
2012-03-23 13:54:38 -04:00
|
|
|
),
|
|
|
|
|
'webdav'=>array(
|
2013-02-10 05:39:03 -05:00
|
|
|
'run'=>false,
|
2012-03-23 13:54:38 -04:00
|
|
|
'host'=>'localhost',
|
|
|
|
|
'user'=>'test',
|
|
|
|
|
'password'=>'test',
|
|
|
|
|
'root'=>'/owncloud/files/webdav.php',
|
|
|
|
|
),
|
2012-03-24 15:27:42 -04:00
|
|
|
'google'=>array(
|
2012-04-13 10:01:20 -04:00
|
|
|
'run'=>false,
|
2012-03-24 15:27:42 -04:00
|
|
|
'consumer_key'=>'anonymous',
|
|
|
|
|
'consumer_secret'=>'anonymous',
|
|
|
|
|
'token'=>'test',
|
|
|
|
|
'token_secret'=>'test',
|
|
|
|
|
'root'=>'/google',
|
2012-04-18 14:54:07 -04:00
|
|
|
),
|
|
|
|
|
'swift'=>array(
|
2012-05-02 17:44:00 -04:00
|
|
|
'run'=>false,
|
2012-04-18 14:54:07 -04:00
|
|
|
'user'=>'test:tester',
|
|
|
|
|
'token'=>'testing',
|
2012-10-11 15:13:19 -04:00
|
|
|
'host'=>'localhost.local:8080/auth',
|
2012-04-18 14:54:07 -04:00
|
|
|
'root'=>'/',
|
|
|
|
|
),
|
2012-05-24 12:22:33 -04:00
|
|
|
'smb'=>array(
|
2013-02-10 05:39:03 -05:00
|
|
|
'run'=>false,
|
2012-05-24 12:22:33 -04:00
|
|
|
'user'=>'test',
|
|
|
|
|
'password'=>'test',
|
|
|
|
|
'host'=>'localhost',
|
2012-06-07 19:29:46 -04:00
|
|
|
'share'=>'/test',
|
|
|
|
|
'root'=>'/test/',
|
2012-05-24 12:22:33 -04:00
|
|
|
),
|
2012-05-16 21:51:45 -04:00
|
|
|
'amazons3'=>array(
|
|
|
|
|
'run'=>false,
|
|
|
|
|
'key'=>'test',
|
|
|
|
|
'secret'=>'test',
|
|
|
|
|
'bucket'=>'bucket',
|
|
|
|
|
),
|
2012-10-06 07:43:34 -04:00
|
|
|
'dropbox' => array (
|
|
|
|
|
'run'=>false,
|
|
|
|
|
'root'=>'owncloud',
|
|
|
|
|
'configured' => 'true',
|
|
|
|
|
'app_key' => '',
|
|
|
|
|
'app_secret' => '',
|
|
|
|
|
'token' => '',
|
|
|
|
|
'token_secret' => ''
|
2013-02-09 14:34:21 -05:00
|
|
|
),
|
|
|
|
|
'sftp' => array (
|
|
|
|
|
'run'=>false,
|
|
|
|
|
'host'=>'localhost',
|
|
|
|
|
'user'=>'test',
|
|
|
|
|
'password'=>'test',
|
|
|
|
|
'root'=>'/test'
|
2012-10-06 07:43:34 -04:00
|
|
|
)
|
2012-03-22 14:56:19 -04:00
|
|
|
);
|