PluginProbe
ActivityPub / 3.2.3
ActivityPub v3.2.3
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 / integration / class-jetpack.php

class-jetpack.php in ActivityPub 3.2.3, at integration/class-jetpack.php

22 lines 483 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Activitypub\Integration;
3
4 class Jetpack {
5
6 public static function init() {
7 \add_filter( 'jetpack_sync_post_meta_whitelist', array( self::class, 'add_sync_meta' ) );
8 }
9
10 public static function add_sync_meta( $whitelist ) {
11 if ( ! is_array( $whitelist ) ) {
12 return $whitelist;
13 }
14 $activitypub_meta_keys = [
15 'activitypub_user_id',
16 'activitypub_inbox',
17 'activitypub_actor_json',
18 ];
19 return \array_merge( $whitelist, $activitypub_meta_keys );
20 }
21 }
22