nextcloud/apps/files_trashbin/list.php

41 lines
1.4 KiB
PHP
Raw Normal View History

2013-01-18 07:11:29 -05:00
<?php
2015-03-26 06:44:34 -04:00
/**
2016-07-21 10:49:16 -04:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
2015-03-26 06:44:34 -04:00
* @author Bart Visscher <bartv@thisnet.nl>
2016-05-26 13:56:05 -04:00
* @author Björn Schießle <bjoern@schiessle.org>
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* @author Roeland Jago Douma <roeland@famdouma.nl>
2015-03-26 06:44:34 -04:00
* @author Vincent Petry <pvince81@owncloud.com>
*
* @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/>
2015-03-26 06:44:34 -04:00
*
*/
2013-02-22 11:21:57 -05:00
// Check if we are a user
2013-01-18 07:11:29 -05:00
OCP\User::checkLoggedIn();
$config = \OC::$server->getConfig();
$userSession = \OC::$server->getUserSession();
$showgridview = $config->getUserValue($userSession->getUser()->getUID(), 'files', 'show_grid', false);
$isIE = \OCP\Util::isIE();
2013-01-18 07:11:29 -05:00
$tmpl = new OCP\Template('files_trashbin', 'index', '');
// gridview not available for ie
$tmpl->assign('showgridview', $showgridview && !$isIE);
OCP\Util::addScript('files_trashbin', 'files_trashbin');
2013-01-18 07:11:29 -05:00
$tmpl->printPage();