diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-28 12:39:28 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-28 12:39:28 +0200 |
commit | 9128900c56d7caab577eb33ed07bb9e681632c48 (patch) | |
tree | 0927a696e5c5f3b03281f4bf0df88db5c6eed252 /apps/files_external/appinfo/app.php | |
parent | 727e3e2359602be975b4a6168a8f8d99ce838e3d (diff) | |
download | nextcloud-server-9128900c56d7caab577eb33ed07bb9e681632c48.tar.gz nextcloud-server-9128900c56d7caab577eb33ed07bb9e681632c48.zip |
drop files_irods from apps_external
Diffstat (limited to 'apps/files_external/appinfo/app.php')
-rw-r--r-- | apps/files_external/appinfo/app.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index 343e1fee2a3..003665486f8 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -19,7 +19,6 @@ OC::$CLASSPATH['OC\Files\Storage\SMB_OC'] = 'files_external/lib/smb_oc.php'; OC::$CLASSPATH['OC\Files\Storage\AmazonS3'] = 'files_external/lib/amazons3.php'; OC::$CLASSPATH['OC\Files\Storage\Dropbox'] = 'files_external/lib/dropbox.php'; OC::$CLASSPATH['OC\Files\Storage\SFTP'] = 'files_external/lib/sftp.php'; -OC::$CLASSPATH['OC\Files\Storage\iRODS'] = 'files_external/lib/irods.php'; OC::$CLASSPATH['OC_Mount_Config'] = 'files_external/lib/config.php'; OCP\App::registerAdmin('files_external', 'settings'); @@ -29,7 +28,6 @@ if (OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') == ' // connecting hooks OCP\Util::connectHook('OC_Filesystem', 'post_initMountPoints', '\OC_Mount_Config', 'initMountPointsHook'); -OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\iRODS', 'login'); OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\SMB_OC', 'login'); OC_Mount_Config::registerBackend('\OC\Files\Storage\Local', array( @@ -154,14 +152,3 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\SFTP', array( 'user' => (string)$l->t('Username'), 'password' => '*'.$l->t('Password'), 'root' => '&'.$l->t('Root')))); - -OC_Mount_Config::registerBackend('\OC\Files\Storage\iRODS', array( - 'backend' => 'iRODS', - 'configuration' => array( - 'host' => (string)$l->t('Host'), - 'port' => (string)$l->t('Port'), - 'use_logon_credentials' => '!'.$l->t('Use ownCloud login'), - 'user' => (string)$l->t('Username'), - 'password' => '*'.$l->t('Password'), - 'auth_mode' => (string)$l->t('Authentication Mode'), - 'zone' => (string)$l->t('Zone')))); |