Overhaul organization of event
authorMarcel Werk <burntime@woltlab.com>
Sat, 11 May 2024 12:26:57 +0000 (14:26 +0200)
committerMarcel Werk <burntime@woltlab.com>
Sat, 11 May 2024 12:26:57 +0000 (14:26 +0200)
commitb4ae02ccc5bf917143179f92e321fe3c3072f67e
tree852bdce2ae6596594e757cd8515b40736f45518a
parent85362c4c4c26262fb19d187b66e7f8f4ebac3b41
Overhaul organization of event

The current practice of placing events where they are used is somewhat inconsistent and worst of all highly intransparent for discovery purposes. This PR proposes a unified directory structure grouped by the app namespace.

See #5858
81 files changed:
wcfsetup/install/files/lib/acp/form/LanguageImportForm.class.php
wcfsetup/install/files/lib/acp/form/LoginForm.class.php
wcfsetup/install/files/lib/acp/page/RebuildDataPage.class.php
wcfsetup/install/files/lib/action/AbstractOauth2AuthAction.class.php
wcfsetup/install/files/lib/action/ApiAction.class.php
wcfsetup/install/files/lib/bootstrap/com.woltlab.wcf.php
wcfsetup/install/files/lib/data/language/LanguageEditor.class.php
wcfsetup/install/files/lib/data/language/item/LanguageItemAction.class.php
wcfsetup/install/files/lib/data/package/installation/plugin/PackageInstallationPluginAction.class.php
wcfsetup/install/files/lib/data/user/menu/item/UserMenuItem.class.php
wcfsetup/install/files/lib/data/user/menu/item/event/UserMenuItemIconResolving.class.php
wcfsetup/install/files/lib/event/IInterruptableEvent.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/IPsr14Event.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/TInterruptableEvent.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/acp/dashboard/box/BoxCollecting.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/acp/dashboard/box/PHPExtensionCollecting.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/acp/dashboard/box/StatusMessageCollecting.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/acp/menu/item/ItemCollecting.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/cache/CacheCleared.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/endpoint/ControllerCollecting.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/language/LanguageContentCopying.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/language/LanguageImported.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/language/PhraseChanged.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/language/PreloadPhrasesCollecting.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/moderation/queue/UserAssigned.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/package/PackageInstallationPluginSynced.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/package/PackageListChanged.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/package/PackageUpdateListChanged.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/request/ActivePageResolving.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/session/PreserveVariablesCollecting.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/spider/SpiderCollecting.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/user/UsernameValidating.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/user/authentication/UserLoggedIn.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/user/authentication/configuration/ConfigurationLoading.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/user/menu/item/IconResolving.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/event/worker/RebuildWorkerCollecting.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/form/LoginForm.class.php
wcfsetup/install/files/lib/form/MultifactorAuthenticationForm.class.php
wcfsetup/install/files/lib/system/acp/dashboard/AcpDashboard.class.php
wcfsetup/install/files/lib/system/acp/dashboard/box/StatusMessageAcpDashboardBox.class.php
wcfsetup/install/files/lib/system/acp/dashboard/box/event/PHPExtensionCollecting.class.php [deleted file]
wcfsetup/install/files/lib/system/acp/dashboard/box/event/StatusMessageCollecting.class.php [deleted file]
wcfsetup/install/files/lib/system/acp/dashboard/event/AcpDashboardCollecting.class.php [deleted file]
wcfsetup/install/files/lib/system/cache/event/CacheCleared.class.php
wcfsetup/install/files/lib/system/endpoint/event/ControllerCollecting.class.php [deleted file]
wcfsetup/install/files/lib/system/event/IEvent.class.php
wcfsetup/install/files/lib/system/event/IInterruptableEvent.class.php
wcfsetup/install/files/lib/system/event/TInterruptableEvent.class.php
wcfsetup/install/files/lib/system/event/listener/PackageUpdateListChangedLicenseListener.class.php
wcfsetup/install/files/lib/system/event/listener/PhraseChangedPreloadListener.class.php
wcfsetup/install/files/lib/system/event/listener/PipSyncedPhrasePreloadListener.class.php
wcfsetup/install/files/lib/system/event/listener/PreloadPhrasesCollectingListener.class.php
wcfsetup/install/files/lib/system/event/listener/UserLoginCancelLostPasswordListener.class.php
wcfsetup/install/files/lib/system/event/listener/UsernameValidatingCheckCharactersListener.class.php
wcfsetup/install/files/lib/system/language/event/LanguageContentCopying.class.php
wcfsetup/install/files/lib/system/language/event/LanguageImported.class.php
wcfsetup/install/files/lib/system/language/event/PhraseChanged.class.php
wcfsetup/install/files/lib/system/language/preload/command/CachePreloadPhrases.class.php
wcfsetup/install/files/lib/system/language/preload/event/PreloadPhrasesCollecting.class.php
wcfsetup/install/files/lib/system/menu/acp/ACPMenu.class.php
wcfsetup/install/files/lib/system/menu/acp/event/AcpMenuCollecting.class.php [deleted file]
wcfsetup/install/files/lib/system/moderation/queue/command/AssignUser.class.php
wcfsetup/install/files/lib/system/moderation/queue/event/UserAssigned.class.php
wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php
wcfsetup/install/files/lib/system/package/PackageUninstallationDispatcher.class.php
wcfsetup/install/files/lib/system/package/PackageUpdateDispatcher.class.php
wcfsetup/install/files/lib/system/package/event/PackageInstallationPluginSynced.class.php
wcfsetup/install/files/lib/system/package/event/PackageListChanged.class.php
wcfsetup/install/files/lib/system/package/event/PackageUpdateListChanged.class.php
wcfsetup/install/files/lib/system/request/RequestHandler.class.php
wcfsetup/install/files/lib/system/request/event/ActivePageResolving.class.php [deleted file]
wcfsetup/install/files/lib/system/session/SessionHandler.class.php
wcfsetup/install/files/lib/system/session/event/PreserveVariablesCollecting.class.php [deleted file]
wcfsetup/install/files/lib/system/spider/SpiderHandler.class.php
wcfsetup/install/files/lib/system/spider/event/SpiderCollecting.class.php [deleted file]
wcfsetup/install/files/lib/system/user/authentication/configuration/UserAuthenticationConfigurationFactory.class.php
wcfsetup/install/files/lib/system/user/authentication/configuration/event/ConfigurationLoading.class.php [deleted file]
wcfsetup/install/files/lib/system/user/authentication/event/UserLoggedIn.class.php
wcfsetup/install/files/lib/system/user/event/UsernameValidating.class.php
wcfsetup/install/files/lib/system/worker/event/RebuildWorkerCollecting.class.php
wcfsetup/install/files/lib/util/UserRegistrationUtil.class.php