aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-08-18 21:29:48 +0200
committerGitHub <noreply@github.com>2020-08-18 21:29:48 +0200
commit5ced155032c51a90b8a9ffb6b1159a34c29194ef (patch)
tree64a523806bf2f16f90c7e3cb8a3e7e31cfb2e46c /apps/files_sharing
parent5d8242c7b69641d9d73db21dc84b7e2f850515df (diff)
parenta5853d7ecc08e048144ad1e9f1ff6f1fbf192a92 (diff)
downloadnextcloud-server-5ced155032c51a90b8a9ffb6b1159a34c29194ef.tar.gz
nextcloud-server-5ced155032c51a90b8a9ffb6b1159a34c29194ef.zip
Merge pull request #22285 from nextcloud/techdebt/noid/move-to-typed-event-in-list.php
Use dispatchTyped instead of dispatch on the new event dispatcher
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/list.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/apps/files_sharing/list.php b/apps/files_sharing/list.php
index 370ca53c6b4..58d2b56b253 100644
--- a/apps/files_sharing/list.php
+++ b/apps/files_sharing/list.php
@@ -30,7 +30,9 @@ use OCP\EventDispatcher\GenericEvent;
OCP\User::checkLoggedIn();
$config = \OC::$server->getConfig();
$userSession = \OC::$server->getUserSession();
-$eventDispatcher = \OC::$server->getEventDispatcher();
+$legacyEventDispatcher = \OC::$server->getEventDispatcher();
+/** @var \OCP\EventDispatcher\IEventDispatcher $eventDispatcher */
+$eventDispatcher = \OC::$server->get(OCP\EventDispatcher\IEventDispatcher::class);
$showgridview = $config->getUserValue($userSession->getUser()->getUID(), 'files', 'show_grid', false);
$isIE = \OCP\Util::isIE();
@@ -41,13 +43,13 @@ $tmpl = new OCP\Template('files_sharing', 'list', '');
$tmpl->assign('showgridview', $showgridview && !$isIE);
// fire script events
-$eventDispatcher->dispatch('\OCP\Collaboration\Resources::loadAdditionalScripts', new GenericEvent());
-$eventDispatcher->dispatch(LoadAdditionalScriptsEvent::class, new LoadAdditionalScriptsEvent());
-$eventDispatcher->dispatch(LoadSidebar::class, new LoadSidebar());
+$legacyEventDispatcher->dispatch('\OCP\Collaboration\Resources::loadAdditionalScripts', new GenericEvent());
+$eventDispatcher->dispatchTyped(new LoadAdditionalScriptsEvent());
+$eventDispatcher->dispatchTyped(new LoadSidebar());
// Load Viewer scripts
if (class_exists(LoadViewer::class)) {
- $eventDispatcher->dispatch(LoadViewer::class, new LoadViewer());
+ $eventDispatcher->dispatchTyped(new LoadViewer());
}
$tmpl->printPage();