WP_REST_Block_Directory_Controller::prepare_links()protectedWP 5.5.0

Generates a list of links to include in the response for the plugin.

Method of the class: WP_REST_Block_Directory_Controller{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->prepare_links( $plugin );
$plugin(array) (required)
The plugin data from WordPress.org.

Changelog

Since 5.5.0 Introduced.

WP_REST_Block_Directory_Controller::prepare_links() code WP 6.5.2

protected function prepare_links( $plugin ) {
	$links = array(
		'https://api.w.org/install-plugin' => array(
			'href' => add_query_arg( 'slug', urlencode( $plugin['slug'] ), rest_url( 'wp/v2/plugins' ) ),
		),
	);

	$plugin_file = $this->find_plugin_for_slug( $plugin['slug'] );

	if ( $plugin_file ) {
		$links['https://api.w.org/plugin'] = array(
			'href'       => rest_url( 'wp/v2/plugins/' . substr( $plugin_file, 0, - 4 ) ),
			'embeddable' => true,
		);
	}

	return $links;
}