WP_REST_Plugins_Controller::get_collection_params() WordPress Method
The WP_REST_Plugins_Controller::get_collection_params() method is used to retrieve the collection parameters for the plugins controller.
WP_REST_Plugins_Controller::get_collection_params() #
Retrieves the query params for the collections.
Return
(array) Query parameters for the collection.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php
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; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |