WC_API_Server::get_routes PHP Method

get_routes() public method

The route map is an associative array with path regexes as the keys. The value is an indexed array with the callback function/method as the first item, and a bitmask of HTTP methods as the second item (see the class constants). Each route can be mapped to more than one callback by using an array of the indexed arrays. This allows mapping e.g. GET requests to one callback and POST requests to another. Note that the path regexes (array keys) must have @ escaped, as this is used as the delimiter with preg_match()
Since: 2.1
public get_routes ( ) : array
return array `'/path/regex' => array( $callback, $bitmask )` or `'/path/regex' => array( array( $callback, $bitmask ), ...)`
    public function get_routes()
    {
        // index added by default
        $endpoints = array('/' => array(array($this, 'get_index'), self::READABLE));
        $endpoints = apply_filters('woocommerce_api_endpoints', $endpoints);
        // Normalise the endpoints
        foreach ($endpoints as $route => &$handlers) {
            if (count($handlers) <= 2 && isset($handlers[1]) && !is_array($handlers[1])) {
                $handlers = array($handlers);
            }
        }
        return $endpoints;
    }