summaryrefslogtreecommitdiff
blob: a05769b23703923c667311e4b7b7f26e618c62a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

class WPCOM_REST_API_V2_Endpoint_Hello {
	public function __construct() {
		add_action( 'rest_api_init', array( $this, 'register_routes' ) );
	}

	public function register_routes() {
		register_rest_route( 'wpcom/v2', '/hello', array(
			array(
				'methods'  => WP_REST_Server::READABLE,
				'callback' => array( $this, 'get_data' ),
			),
		) );
	}

	public function get_data( $request ) {
		return array( 'hello' => 'world' );
	}
}

wpcom_rest_api_v2_load_plugin( 'WPCOM_REST_API_V2_Endpoint_Hello' );