2014-06-06 15:16:47 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Jesús Macias <jmacias@solidgear.es>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Vincent Petry <vincent@nextcloud.com>
|
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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
*/
|
2014-06-06 15:16:47 +04:00
|
|
|
// Check if we are a user
|
2021-02-16 13:56:07 +03:00
|
|
|
OC_Util::checkLoggedIn();
|
2018-11-06 11:06:24 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
$userSession = \OC::$server->getUserSession();
|
|
|
|
|
|
|
|
$showgridview = $config->getUserValue($userSession->getUser()->getUID(), 'files', 'show_grid', true);
|
2021-02-16 13:36:29 +03:00
|
|
|
$isIE = OC_Util::isIe();
|
2014-06-06 15:16:47 +04:00
|
|
|
|
|
|
|
$tmpl = new OCP\Template('files_external', 'list', '');
|
|
|
|
|
2018-11-06 11:06:24 +03:00
|
|
|
// gridview not available for ie
|
|
|
|
$tmpl->assign('showgridview', $showgridview && !$isIE);
|
|
|
|
|
2015-11-12 15:40:28 +03:00
|
|
|
/* Load Status Manager */
|
2015-11-24 10:52:02 +03:00
|
|
|
\OCP\Util::addStyle('files_external', 'external');
|
2015-11-12 15:40:28 +03:00
|
|
|
\OCP\Util::addScript('files_external', 'statusmanager');
|
2018-11-18 13:13:46 +03:00
|
|
|
\OCP\Util::addScript('files_external', 'templates');
|
2015-11-12 15:40:28 +03:00
|
|
|
\OCP\Util::addScript('files_external', 'rollingqueue');
|
|
|
|
|
2014-06-06 15:16:47 +04:00
|
|
|
OCP\Util::addScript('files_external', 'app');
|
|
|
|
OCP\Util::addScript('files_external', 'mountsfilelist');
|
|
|
|
|
|
|
|
$tmpl->printPage();
|