Changeset 40238
- Timestamp:
- 03/07/2017 05:47:32 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/class-wp-rest-server.php
r40038 r40238 1013 1013 // General site data. 1014 1014 $available = array( 1015 'name' => get_option( 'blogname' ), 1016 'description' => get_option( 'blogdescription' ), 1017 'url' => get_option( 'siteurl' ), 1018 'home' => home_url(), 1019 'namespaces' => array_keys( $this->namespaces ), 1020 'authentication' => array(), 1021 'routes' => $this->get_data_for_routes( $this->get_routes(), $request['context'] ), 1015 'name' => get_option( 'blogname' ), 1016 'description' => get_option( 'blogdescription' ), 1017 'url' => get_option( 'siteurl' ), 1018 'home' => home_url(), 1019 'gmt_offset' => get_option( 'gmt_offset' ), 1020 'timezone_string' => get_option( 'timezone_string' ), 1021 'namespaces' => array_keys( $this->namespaces ), 1022 'authentication' => array(), 1023 'routes' => $this->get_data_for_routes( $this->get_routes(), $request['context'] ), 1022 1024 ); 1023 1025 -
trunk/tests/phpunit/tests/rest-api/rest-server.php
r38947 r40238 647 647 $this->assertArrayHasKey( 'url', $data ); 648 648 $this->assertArrayHasKey( 'home', $data ); 649 $this->assertArrayHasKey( 'gmt_offset', $data ); 650 $this->assertArrayHasKey( 'timezone_string', $data ); 649 651 $this->assertArrayHasKey( 'namespaces', $data ); 650 652 $this->assertArrayHasKey( 'authentication', $data ); -
trunk/tests/qunit/fixtures/wp-api-generated.js
r40121 r40238 11 11 "url": "http://example.org", 12 12 "home": "http://example.org", 13 "gmt_offset": "0", 14 "timezone_string": "", 13 15 "namespaces": [ 14 16 "oembed/1.0",
Note: See TracChangeset
for help on using the changeset viewer.