PATH:
home
/
lab2454c
/
sothebankuab.com
/
wp-content
/
plugins
/
jetpack
/
_inc
/
lib
/
core-api
/
wpcom-endpoints
<?php /** * Business Hours: Localized week * * @since 7.1 */ class WPCOM_REST_API_V2_Endpoint_Business_Hours extends WP_REST_Controller { function __construct() { $this->namespace = 'wpcom/v2'; $this->rest_base = 'business-hours'; // This endpoint *does not* need to connect directly to Jetpack sites. add_action( 'rest_api_init', array( $this, 'register_routes' ) ); } public function register_routes() { // GET /sites/<blog_id>/business-hours/localized-week - Return the localized register_rest_route( $this->namespace, '/' . $this->rest_base . '/localized-week', array( array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_localized_week' ), 'permission_callback' => '__return_true', ) ) ); } /** * Retreives localized business hours * * @return array data object containing information about business hours */ public function get_localized_week() { global $wp_locale; return array( 'days' => array( 'Sun' => $wp_locale->get_weekday( 0 ), 'Mon' => $wp_locale->get_weekday( 1 ), 'Tue' => $wp_locale->get_weekday( 2 ), 'Wed' => $wp_locale->get_weekday( 3 ), 'Thu' => $wp_locale->get_weekday( 4 ), 'Fri' => $wp_locale->get_weekday( 5 ), 'Sat' => $wp_locale->get_weekday( 6 ), ), 'startOfWeek' => (int) get_option( 'start_of_week', 0 ), ); } } wpcom_rest_api_v2_load_plugin( 'WPCOM_REST_API_V2_Endpoint_Business_Hours' );
[-] class-wpcom-rest-api-v2-endpoint-tweetstorm-gather.php
[edit]
[-] class-wpcom-rest-api-v2-endpoint-admin-menu.php
[edit]
[-] class-wpcom-rest-api-v2-endpoint-videopress.php
[edit]
[-] class-wpcom-rest-api-v2-endpoint-transient.php
[edit]
[-] class-wpcom-rest-api-v2-endpoint-search.php
[edit]
[-] publicize-connections.php
[edit]
[+]
..
[-] publicize-services.php
[edit]
[-] class-wpcom-rest-api-v2-endpoint-tweetstorm-parse.php
[edit]
[-] publicize-connection-test-results.php
[edit]
[-] class-wpcom-rest-api-v2-endpoint-instagram-gallery.php
[edit]
[-] class-wpcom-rest-api-v2-endpoint-external-media.php
[edit]
[-] subscribers.php
[edit]
[-] gutenberg-available-extensions.php
[edit]
[-] class-wpcom-rest-api-v2-endpoint-resolve-redirect.php
[edit]
[-] business-hours.php
[edit]
[-] hello.php
[edit]
[-] service-api-keys.php
[edit]
[-] sites-posts-featured-media-url.php
[edit]
[-] class-wpcom-rest-api-v2-endpoint-mailchimp.php
[edit]
[-] memberships.php
[edit]
[-] class-wpcom-rest-api-v2-endpoint-podcast-player.php
[edit]