automattic/jetpack-connection-ui

This package is abandoned and no longer maintained. No replacement package was suggested.

Jetpack Connection UI

Package info

github.com/Automattic/jetpack-connection-ui

Type:jetpack-library

pkg:composer/automattic/jetpack-connection-ui

Statistics

Installs: 9 080

Dependents: 0

Suggesters: 0

Stars: 2

v2.4.17 2022-09-20 17:03 UTC

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

GPL-2.0-or-later c90df5b49dd4de35ad11bafab0bdd423f24d8189


README

Convenient UI to manager your site's connection to WP.com

How to use

Package is published in Packagist.

  1. Use composer to add the package to your project:
composer require automattic/jetpack-connection-ui
  1. Then you need to initialize it on the plugins_loaded hook:
add_action( 'plugins_loaded', 'load_connection_ui' );

function load_connection_ui() {
	Automattic\Jetpack\ConnectionUI\Admin::init();
}
  1. You need to build its assets before using it. To do that, you need to run the following commands:
cd vendor/automattic/jetpack-connection-ui
pnpm build