PluginProbe
ActivityPub / 8.0.2
ActivityPub v8.0.2
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-cli.php +0 -18 9.0.28.0.2 View file →
@@ -30,11 +30,9 @@
30 30 * - wp activitypub cache <clear|status> [--type=<type>]
31 31 * - wp activitypub self-destruct [--status] [--yes]
32 32 * - wp activitypub move <from> <to>
33 33 * - wp activitypub follow <remote_user>
34 - * - wp activitypub stats <collect|compile|send>
35 34 * - wp activitypub fetch <url>
36 - * - wp activitypub blurhash backfill [--dry-run] [--limit=<n>] [--force]
37 35 */
38 36 public static function register() {
39 37 // Register parent command with version subcommand.
40 38 \WP_CLI::add_command(
@@ -113,24 +111,8 @@
113 111 'activitypub fetch',
114 112 '\Activitypub\Cli\Fetch_Command',
115 113 array(
116 114 'shortdesc' => 'Fetch a remote URL with a signed ActivityPub request.',
117 - )
118 - );
119 -
120 - \WP_CLI::add_command(
121 - 'activitypub stats',
122 - '\Activitypub\Cli\Stats_Command',
123 - array(
124 - 'shortdesc' => 'Manage ActivityPub statistics (collect, compile or send).',
125 - )
126 - );
127 -
128 - \WP_CLI::add_command(
129 - 'activitypub blurhash',
130 - '\Activitypub\Cli\Blurhash_Command',
131 - array(
132 - 'shortdesc' => 'Backfill Blurhash placeholders for image attachments.',
133 115 )
134 116 );
135 117 }
136 118 }