PluginProbe
ActivityPub / 2.6.0
ActivityPub v2.6.0
9.3.1 9.3.0 9.2.2 9.2.1 9.2.0 9.1.0 9.0.2 9.0.1 9.0.0 8.3.0 8.2.1 8.2.0 8.1.1 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.2.0 1.3.0 2.0.0 2.0.1 2.1.0 2.1.1 All 160 releases
← All changes | includes/class-handler.php +2 -0 1.3.02.6.0 View file →
@@ -1,7 +1,8 @@
1 1 <?php
2 2 namespace Activitypub;
3 3
4 +use Activitypub\Handler\Announce;
4 5 use Activitypub\Handler\Create;
5 6 use Activitypub\Handler\Delete;
6 7 use Activitypub\Handler\Follow;
7 8 use Activitypub\Handler\Undo;
@@ -21,8 +22,9 @@
21 22 /**
22 23 * Register handlers.
23 24 */
24 25 public static function register_handlers() {
26 + Announce::init();
25 27 Create::init();
26 28 Delete::init();
27 29 Follow::init();
28 30 Undo::init();