3, 'tooltip' => 'echo-pref-tooltip-dt-subscription', ]; $notifications['dt-subscribed-new-comment'] = [ 'category' => 'dt-subscription', 'group' => 'interactive', 'section' => 'message', 'user-locators' => [ [ [ EventDispatcher::class, 'locateSubscribedUsers' ] ] ], // Exclude mentioned users and talk page owner from our notification, to avoid // duplicate notifications for a single comment 'user-filters' => [ [ [ EchoUserLocator::class, 'locateFromEventExtra' ], [ 'mentioned-users' ] ], [ [ EchoUserLocator::class, 'locateTalkPageOwner' ] ], ], 'presentation-model' => SubscribedNewCommentPresentationModel::class, 'bundle' => [ 'web' => true, 'email' => true, 'expandable' => true, ], ]; $notificationCategories['dt-subscription-archiving'] = [ 'priority' => 3, 'tooltip' => 'echo-pref-tooltip-dt-subscription-archiving', ]; $notifications['dt-removed-topic'] = [ 'category' => 'dt-subscription-archiving', 'group' => 'interactive', 'section' => 'message', 'user-locators' => [ [ [ EventDispatcher::class, 'locateSubscribedUsers' ] ] ], 'presentation-model' => RemovedTopicPresentationModel::class, 'bundle' => [ 'web' => true, 'email' => true, 'expandable' => true, ], ]; $notifications['dt-added-topic'] = [ 'category' => 'dt-subscription', 'group' => 'interactive', 'section' => 'message', 'user-locators' => [ [ [ EventDispatcher::class, 'locateSubscribedUsers' ] ] ], 'presentation-model' => AddedTopicPresentationModel::class, 'bundle' => [ 'web' => true, 'email' => true, 'expandable' => true, ], ]; // Override default handlers $notifications['edit-user-talk']['presentation-model'] = EnhancedEchoEditUserTalkPresentationModel::class; $notifications['mention']['presentation-model'] = EnhancedEchoMentionPresentationModel::class; } /** * @param Event $event * @param string &$bundleString * @return bool */ public static function onEchoGetBundleRules( Event $event, string &$bundleString ): bool { switch ( $event->getType() ) { case 'dt-subscribed-new-comment': $bundleString = $event->getType() . '-' . $event->getExtraParam( 'subscribed-comment-name' ); break; case 'dt-added-topic': case 'dt-removed-topic': $bundleString = $event->getType() . '-' . $event->getTitle()->getNamespace() . '-' . $event->getTitle()->getDBkey(); break; } return true; } /** * @param array &$events * @param RevisionRecord $revision * @param bool $isRevert */ public static function onEchoGetEventsForRevision( array &$events, RevisionRecord $revision, bool $isRevert ) { if ( $isRevert ) { return; } EventDispatcher::generateEventsForRevision( $events, $revision ); } }