WP_REST_Application_Passwords_Controller::prepare_item_for_database()protectedWP 5.6.0

Prepares an application password for a create or update operation.

Method of the class: WP_REST_Application_Passwords_Controller{}

Hooks from the method

Return

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

Usage

// protected - for code of main (parent) or child class
$result = $this->prepare_item_for_database( $request );
$request(WP_REST_Request) (required)
Request object.

Changelog

Since 5.6.0 Introduced.

WP_REST_Application_Passwords_Controller::prepare_item_for_database() code WP 6.5.2

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 );
}