Recipe_Post_Rest_Api::set_any_or_all_trigger_option( WP_REST_Request $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 set_any_or_all_trigger_option( WP_REST_Request $request ) { // Make sure we have a recipe ID and the newOrder if ( $request->has_param( 'recipeID' ) ) { $recipe_id = absint( $request->get_param( 'recipeID' ) ); $all_or_any = $request->get_param( 'allOrAnyOption' ); update_post_meta( $recipe_id, 'run_when_any_trigger_complete', $all_or_any ); $return['message'] = 'Updated!'; $return['success'] = true; $return['action'] = 'set_any_trigger_option'; Automator()->cache->clear_automator_recipe_part_cache( $recipe_id ); $return['recipes_object'] = Automator()->get_recipes_data( true, $recipe_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