Add missing links to bootstrap script documentation
authorMarcel Werk <burntime@woltlab.com>
Wed, 19 Jun 2024 13:38:02 +0000 (15:38 +0200)
committerMarcel Werk <burntime@woltlab.com>
Wed, 19 Jun 2024 13:38:02 +0000 (15:38 +0200)
docs/package/acp-menu-items.md
docs/php/api/acp_dashboard_boxes.md

index 24e7e6ecaddedb32d1e01a15f6b741fd85f45d48..df88b6c5d58380f2631ef65162793aace6130a38 100644 (file)
@@ -2,7 +2,7 @@
 
 The API for the ACP menu items allows you to add your own menu items in the admin panel for your package.
 
-Since WoltLab Suite 6.1 you can attach an event listener to the `wcf\event\acp\menu\item\ItemCollecting` event inside a bootstrap script to lazily register your ACP menu items.
+Since WoltLab Suite 6.1 you can attach an event listener to the `wcf\event\acp\menu\item\ItemCollecting` event inside a [bootstrap script](../package/bootstrap-scripts.md) to lazily register your ACP menu items.
 
 The `register` method of the event expects an object of the type `wcf\system\menu\acp\AcpMenuItem` as a parameter. An `AcpMenuItem` object consists of the following parameters:
 
index 0de9468247ceeb25dcd71456e0305c69c3330712..c7f5e54da5ec7aa99a4c38c73a7ef3098ba69649 100644 (file)
@@ -33,7 +33,7 @@ final class FooBox extends AbstractAcpDashboardBox {
 
 ## Register a Custom Box
 
-You can attach an event listener to the `wcf\event\acp\dashboard\box\BoxCollecting` 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](../../package/bootstrap-scripts.md) 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"