2014-05-09 00:06:30 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Vincent Petry <vincent@nextcloud.com>
|
2014-05-09 00:06:30 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2014-05-09 00:06:30 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2014-05-09 00:06:30 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-05-09 00:06:30 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-05-09 00:06:30 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2014-05-09 00:06:30 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-05-12 21:54:20 +04:00
|
|
|
$config = \OC::$server->getConfig();
|
2018-10-04 16:14:15 +03:00
|
|
|
$userSession = \OC::$server->getUserSession();
|
2014-05-12 21:54:20 +04:00
|
|
|
// TODO: move this to the generated config.js
|
2014-05-09 00:06:30 +04:00
|
|
|
$publicUploadEnabled = $config->getAppValue('core', 'shareapi_allow_public_upload', 'yes');
|
2018-11-06 11:06:24 +03:00
|
|
|
|
2018-11-15 22:29:10 +03:00
|
|
|
$showgridview = $config->getUserValue($userSession->getUser()->getUID(), 'files', 'show_grid', false);
|
2018-11-05 19:27:09 +03:00
|
|
|
$isIE = \OCP\Util::isIE();
|
2014-05-09 00:06:30 +04:00
|
|
|
|
2014-05-12 21:54:20 +04:00
|
|
|
// renders the controls and table headers template
|
2014-05-09 00:06:30 +04:00
|
|
|
$tmpl = new OCP\Template('files', 'list', '');
|
2018-11-06 11:06:24 +03:00
|
|
|
|
2018-11-05 19:27:09 +03:00
|
|
|
// gridview not available for ie
|
|
|
|
$tmpl->assign('showgridview', $showgridview && !$isIE);
|
2018-11-06 11:06:24 +03:00
|
|
|
$tmpl->assign('publicUploadEnabled', $publicUploadEnabled);
|
2014-05-09 00:06:30 +04:00
|
|
|
$tmpl->printPage();
|