| 1 |
<?php |
| 2 |
|
| 3 |
class WPCOM_REST_API_V2_Endpoint_Hello { |
| 4 |
public function __construct() { |
| 5 |
add_action( 'rest_api_init', array( $this, 'register_routes' ) ); |
| 6 |
} |
| 7 |
|
| 8 |
public function register_routes() { |
| 9 |
register_rest_route( 'wpcom/v2', '/hello', array( |
| 10 |
array( |
| 11 |
'methods' => WP_REST_Server::READABLE, |
| 12 |
'callback' => array( $this, 'get_data' ), |
| 13 |
), |
| 14 |
) ); |
| 15 |
} |
| 16 |
|
| 17 |
public function get_data( $request ) { |
| 18 |
return array( 'hello' => 'world' ); |
| 19 |
} |
| 20 |
} |
| 21 |
|
| 22 |
wpcom_rest_api_v2_load_plugin( 'WPCOM_REST_API_V2_Endpoint_Hello' ); |
| 23 |
|