WP_REST_Plugins_Controller::get_collection_params(): array

In this article

Retrieves the query params for the collections.

Return

array Query parameters for the collection.

Source

public function get_collection_params() {
	$query_params = parent::get_collection_params();

	$query_params['context']['default'] = 'view';

	$query_params['status'] = array(
		'description' => __( 'Limits results to plugins with the given status.' ),
		'type'        => 'array',
		'items'       => array(
			'type' => 'string',
			'enum' => is_multisite() ? array( 'inactive', 'active', 'network-active' ) : array( 'inactive', 'active' ),
		),
	);

	unset( $query_params['page'], $query_params['per_page'] );

	return $query_params;
}

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.