2012-03-30 20:10:16 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2012-06-08 19:42:00 +04:00
|
|
|
OC::$CLASSPATH['OC_FileStorage_StreamWrapper']='apps/files_external/lib/streamwrapper.php';
|
2012-03-30 20:10:16 +04:00
|
|
|
OC::$CLASSPATH['OC_Filestorage_FTP']='apps/files_external/lib/ftp.php';
|
|
|
|
OC::$CLASSPATH['OC_Filestorage_DAV']='apps/files_external/lib/webdav.php';
|
|
|
|
OC::$CLASSPATH['OC_Filestorage_Google']='apps/files_external/lib/google.php';
|
2012-04-18 22:54:07 +04:00
|
|
|
OC::$CLASSPATH['OC_Filestorage_SWIFT']='apps/files_external/lib/swift.php';
|
2012-05-24 20:22:33 +04:00
|
|
|
OC::$CLASSPATH['OC_Filestorage_SMB']='apps/files_external/lib/smb.php';
|
2012-06-08 19:42:00 +04:00
|
|
|
OC::$CLASSPATH['OC_Filestorage_AmazonS3']='apps/files_external/lib/amazons3.php';
|
2012-06-09 23:02:26 +04:00
|
|
|
OC::$CLASSPATH['OC_Filestorage_Dropbox']='apps/files_external/lib/dropbox.php';
|
2012-06-08 19:42:00 +04:00
|
|
|
OC::$CLASSPATH['OC_Mount_Config']='apps/files_external/lib/config.php';
|
2012-05-24 20:22:33 +04:00
|
|
|
|
2012-05-24 19:06:03 +04:00
|
|
|
OCP\App::registerAdmin('files_external', 'settings');
|
2012-06-08 19:42:00 +04:00
|
|
|
if (OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') == 'yes') {
|
|
|
|
OCP\App::registerPersonal('files_external', 'personal');
|
|
|
|
}
|