Update information about the `BoxCollecting` event
authorMarcel Werk <burntime@woltlab.com>
Mon, 13 May 2024 10:05:23 +0000 (12:05 +0200)
committerMarcel Werk <burntime@woltlab.com>
Mon, 13 May 2024 10:05:23 +0000 (12:05 +0200)
docs/php/api/acp_dashboard_boxes.md

index 684020e2ddb74f716b509443ff93e25dcd15315d..0de9468247ceeb25dcd71456e0305c69c3330712 100644 (file)
@@ -13,9 +13,6 @@ Example:
 <?php
 namespace wcf\system\acp\dashboard\box;
 
-use wcf\system\event\EventHandler;
-use wcf\system\acp\dashboard\event\AcpDashboardCollecting;
-
 final class FooBox extends AbstractAcpDashboardBox {
     public function getTitle(): string
     {
@@ -36,19 +33,19 @@ final class FooBox extends AbstractAcpDashboardBox {
 
 ## Register a Custom Box
 
-You can attach an event listener to the `wcf\system\acp\dashboard\event\AcpDashboardCollecting` event inside a bootstrap script to lazily register custom boxes.
+You can attach an event listener to the `wcf\event\acp\dashboard\box\BoxCollecting` event inside a bootstrap script to lazily register custom boxes.
 The class name of the box is registered using the event’s `register()` method:
 
 ```php title="files/lib/bootstrap/com.example.bar.php"
 <?php
 
 use wcf\system\event\EventHandler;
-use wcf\system\acp\dashboard\event\AcpDashboardCollecting;
+use wcf\event\acp\dashboard\box\BoxCollecting;
 
 return static function (): void {
     $eventHandler = EventHandler::getInstance();
 
-    $eventHandler->register(AcpDashboardCollecting::class, static function (AcpDashboardCollecting $event) {
+    $eventHandler->register(BoxCollecting::class, static function (BoxCollecting $event) {
         $event->register(\wcf\system\acp\dashboard\box\FooBox::class);
     });
 };