WP_REST_Application_Passwords_Controller::prepare_item_for_database( WP_REST_Request $request ): object|WP_Error

Prepares an application password for a create or update operation.


Parameters

$request WP_REST_Request Required
Request object.

Top ↑

Return

object|WP_Error The prepared item, or WP_Error object on failure.


Top ↑

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php. View all references

protected function prepare_item_for_database( $request ) {
	$prepared = (object) array(
		'name' => $request['name'],
	);

	if ( $request['app_id'] && ! $request['uuid'] ) {
		$prepared->app_id = $request['app_id'];
	}

	/**
	 * Filters an application password before it is inserted via the REST API.
	 *
	 * @since 5.6.0
	 *
	 * @param stdClass        $prepared An object representing a single application password prepared for inserting or updating the database.
	 * @param WP_REST_Request $request  Request object.
	 */
	return apply_filters( 'rest_pre_insert_application_password', $prepared, $request );
}

Top ↑

Hooks



Top ↑

Changelog

Changelog
Version Description
5.6.0 Introduced.

Top ↑

User Contributed Notes

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