2012-03-30 20:10:16 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Christian Berendt <berendt@b1-systems.de>
|
2015-10-26 15:54:55 +03:00
|
|
|
* @author Jan-Christoph Borchardt <hey@jancborchardt.net>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author j-ed <juergen@eisfair.org>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Ross Nicoll <jrn@jrn.me.uk>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2012-03-30 20:10:16 +04:00
|
|
|
*/
|
|
|
|
|
2013-03-02 15:12:33 +04:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\StreamWrapper'] = 'files_external/lib/streamwrapper.php';
|
|
|
|
OC::$CLASSPATH['OC\Files\Storage\FTP'] = 'files_external/lib/ftp.php';
|
2013-10-09 18:54:36 +04:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\OwnCloud'] = 'files_external/lib/owncloud.php';
|
2013-03-02 15:12:33 +04:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\Google'] = 'files_external/lib/google.php';
|
2013-10-22 16:22:03 +04:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\Swift'] = 'files_external/lib/swift.php';
|
2013-03-02 15:12:33 +04:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\SMB'] = 'files_external/lib/smb.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_Mount_Config'] = 'files_external/lib/config.php';
|
2014-06-06 15:16:47 +04:00
|
|
|
OC::$CLASSPATH['OCA\Files\External\Api'] = 'files_external/lib/api.php';
|
2012-05-24 20:22:33 +04:00
|
|
|
|
2014-08-26 20:46:07 +04:00
|
|
|
require_once __DIR__ . '/../3rdparty/autoload.php';
|
|
|
|
|
2015-08-12 23:43:29 +03:00
|
|
|
// register Application object singleton
|
|
|
|
\OC_Mount_Config::$app = new \OCA\Files_external\Appinfo\Application();
|
|
|
|
$appContainer = \OC_Mount_Config::$app->getContainer();
|
2015-08-11 20:45:07 +03:00
|
|
|
|
2016-01-15 01:13:28 +03:00
|
|
|
\OC_Mount_Config::$app->registerSettings();
|
2015-08-11 20:45:07 +03:00
|
|
|
|
2016-01-15 01:13:28 +03:00
|
|
|
$l = \OC::$server->getL10N('files_external');
|
2013-04-19 00:12:53 +04:00
|
|
|
|
2015-01-14 20:16:12 +03:00
|
|
|
\OCA\Files\App::getNavigationManager()->add([
|
|
|
|
"id" => 'extstoragemounts',
|
|
|
|
"appname" => 'files_external',
|
|
|
|
"script" => 'list.php',
|
|
|
|
"order" => 30,
|
|
|
|
"name" => $l->t('External storage')
|
|
|
|
]);
|
2014-06-06 15:16:47 +04:00
|
|
|
|
2015-08-11 20:45:07 +03:00
|
|
|
$mountProvider = $appContainer->query('OCA\Files_External\Config\ConfigAdapter');
|
2014-12-03 16:14:31 +03:00
|
|
|
\OC::$server->getMountProviderCollection()->registerProvider($mountProvider);
|