PluginProbe
ActivityPub / 2.1.1
ActivityPub v2.1.1
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
activitypub / templates / post-json.php

post-json.php in ActivityPub 2.1.1, at templates/post-json.php

19 lines 611 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
3 $post = \get_post();
4
5 $post_object = \Activitypub\Transformer\Factory::get_transformer( $post )->to_object();
6
7 /*
8 * Action triggerd prior to the ActivityPub profile being created and sent to the client
9 */
10 \do_action( 'activitypub_json_post_pre' );
11
12 \header( 'Content-Type: application/activity+json' );
13 echo $post_object->to_json(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
14
15 /*
16 * Action triggerd after the ActivityPub profile has been created and sent to the client
17 */
18 \do_action( 'activitypub_json_post_post' );
19