2016-07-22 16:20:51 +03:00
|
|
|
<?php
|
2017-11-06 17:56:42 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2017-11-06 22:15:27 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-11-06 17:56:42 +03:00
|
|
|
*
|
|
|
|
*/
|
2016-07-22 16:20:51 +03:00
|
|
|
// Check if we are a user
|
|
|
|
OCP\User::checkLoggedIn();
|
2018-11-06 11:06:24 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
$userSession = \OC::$server->getUserSession();
|
|
|
|
|
2018-11-15 22:29:10 +03:00
|
|
|
$showgridview = $config->getUserValue($userSession->getUser()->getUID(), 'files', 'show_grid', false);
|
2021-02-16 13:36:29 +03:00
|
|
|
$isIE = OC_Util::isIe();
|
2016-07-22 16:20:51 +03:00
|
|
|
|
|
|
|
$tmpl = new OCP\Template('files', 'recentlist', '');
|
|
|
|
|
2018-11-06 11:06:24 +03:00
|
|
|
// gridview not available for ie
|
|
|
|
$tmpl->assign('showgridview', $showgridview && !$isIE);
|
|
|
|
|
2016-07-22 16:20:51 +03:00
|
|
|
$tmpl->printPage();
|