2014-04-30 19:42:35 +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.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2019-12-19 15:16:31 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
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
|
|
|
*
|
|
|
|
*/
|
2019-11-05 17:10:54 +03:00
|
|
|
use OCA\Files\Event\LoadAdditionalScriptsEvent;
|
|
|
|
use OCA\Files\Event\LoadSidebar;
|
2020-03-04 15:51:40 +03:00
|
|
|
use OCA\Viewer\Event\LoadViewer;
|
2019-12-09 16:24:57 +03:00
|
|
|
use OCP\EventDispatcher\GenericEvent;
|
2019-11-05 17:10:54 +03:00
|
|
|
|
2014-04-30 19:42:35 +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();
|
2020-08-18 17:25:19 +03:00
|
|
|
$legacyEventDispatcher = \OC::$server->getEventDispatcher();
|
|
|
|
/** @var \OCP\EventDispatcher\IEventDispatcher $eventDispatcher */
|
|
|
|
$eventDispatcher = \OC::$server->get(OCP\EventDispatcher\IEventDispatcher::class);
|
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);
|
2021-02-16 13:36:29 +03:00
|
|
|
$isIE = OC_Util::isIe();
|
2014-04-30 19:42:35 +04:00
|
|
|
|
|
|
|
$tmpl = new OCP\Template('files_sharing', 'list', '');
|
|
|
|
|
2018-11-06 11:06:24 +03:00
|
|
|
// gridview not available for ie
|
|
|
|
$tmpl->assign('showgridview', $showgridview && !$isIE);
|
|
|
|
|
2019-11-05 17:10:54 +03:00
|
|
|
// fire script events
|
2020-08-18 17:25:19 +03:00
|
|
|
$legacyEventDispatcher->dispatch('\OCP\Collaboration\Resources::loadAdditionalScripts', new GenericEvent());
|
|
|
|
$eventDispatcher->dispatchTyped(new LoadAdditionalScriptsEvent());
|
|
|
|
$eventDispatcher->dispatchTyped(new LoadSidebar());
|
2014-04-30 19:42:35 +04:00
|
|
|
|
2020-03-04 15:51:40 +03:00
|
|
|
// Load Viewer scripts
|
|
|
|
if (class_exists(LoadViewer::class)) {
|
2020-08-18 17:25:19 +03:00
|
|
|
$eventDispatcher->dispatchTyped(new LoadViewer());
|
2020-03-04 15:51:40 +03:00
|
|
|
}
|
|
|
|
|
2014-04-30 19:42:35 +04:00
|
|
|
$tmpl->printPage();
|