BP_REST_Reply_Actions_Endpoint::register_routes()
Register the component routes.
Description
Source
File: bp-forums/classes/class-bp-rest-reply-actions-endpoint.php
public function register_routes() { register_rest_route( $this->namespace, '/' . $this->rest_base . '/action/(?P<id>[\d]+)', array( 'args' => array( 'id' => array( 'description' => __( 'A unique numeric ID for the reply.', 'buddyboss' ), 'type' => 'integer', 'required' => true, ), 'action' => array( 'description' => __( 'Action name to perform on the reply.', 'buddyboss' ), 'type' => 'string', 'required' => true, 'enum' => array( 'spam', 'trash', ), 'sanitize_callback' => 'sanitize_key', 'validate_callback' => 'rest_validate_request_arg', ), 'value' => array( 'description' => __( 'Value for the action on reply.', 'buddyboss' ), 'type' => 'boolean', 'sanitize_callback' => 'rest_sanitize_boolean', 'validate_callback' => 'rest_validate_request_arg', ), ), array( 'methods' => WP_REST_Server::CREATABLE, 'callback' => array( $this, 'action_items' ), 'permission_callback' => array( $this, 'action_items_permissions_check' ), ), 'schema' => array( $this, 'get_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/move/(?P<id>[\d]+)', array( 'args' => array( 'id' => array( 'description' => __( 'A unique numeric ID for the reply.', 'buddyboss' ), 'type' => 'integer', 'required' => true, ), 'move_option' => array( 'description' => __( 'Options for Move the reply.', 'buddyboss' ), 'type' => 'string', 'required' => true, 'enum' => array( 'topic', 'existing', ), 'sanitize_callback' => 'sanitize_key', 'validate_callback' => 'rest_validate_request_arg', ), 'destination_topic_id' => array( 'description' => __( 'Destination Topic ID.', 'buddyboss' ), 'type' => 'integer', 'sanitize_callback' => 'absint', 'validate_callback' => 'rest_validate_request_arg', ), 'destination_topic_title' => array( 'description' => __( 'New Topic Title.', 'buddyboss' ), 'type' => 'string', 'sanitize_callback' => 'sanitize_text_field', 'validate_callback' => 'rest_validate_request_arg', ), ), array( 'methods' => WP_REST_Server::CREATABLE, 'callback' => array( $this, 'move_item' ), 'permission_callback' => array( $this, 'move_item_permissions_check' ), ), 'schema' => array( $this, 'get_item_schema' ), ) ); }
Changelog
Version | Description |
---|---|
0.1.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.