Recipe_Post_Rest_Api::change_post_recipe_type( $request )
Contents
Parameters Parameters
- $request
-
(Required)
Return Return
(WP_REST_Response)
Source Source
File: src/core/automator-post-types/uo-recipe/class-recipe-post-rest-api.php
public function change_post_recipe_type( WP_REST_Request $request ) { // Make sure we have a post ID and a post status if ( $request->has_param( 'post_ID' ) && $request->has_param( 'recipe_type' ) ) { $recipe_types = apply_filters_deprecated( 'uap_recipe_types', array( Automator()->get_recipe_types() ), '3.0', 'automator_recipe_types' ); $recipe_types = apply_filters( 'automator_recipe_types', $recipe_types ); $recipe_type = sanitize_text_field( $request->get_param( 'recipe_type' ) ); $post_id = absint( $request->get_param( 'post_ID' ) ); if ( in_array( $recipe_type, $recipe_types, true ) && $post_id ) { $updated = Automator()->utilities->set_recipe_type( $post_id, $recipe_type ); if ( false !== $updated ) { $return['message'] = 'Updated!'; $return['success'] = true; $return['action'] = 'updated_post'; $return['recipes_object'] = Automator()->get_recipes_data( true, $post_id ); return new WP_REST_Response( $return, 200 ); } } } $return['message'] = 'Failed to update'; $return['success'] = false; $return['action'] = 'show_error'; return new WP_REST_Response( $return, 200 ); }
Expand full source code Collapse full source code View on Github