* * @return array */ public function get_item_schema() { $schema = parent::get_item_schema(); $schema['title'] = 'report_products_stats'; $segment_label = array( 'description' => __( 'Human readable segment label, either product or variation name.', 'woocommerce' ), 'type' => 'string', 'context' => array( 'view', 'edit' ), 'readonly' => true, 'enum' => array( 'day', 'week', 'month', 'year' ), ); $schema['properties']['totals']['properties']['segments']['items']['properties']['segment_label'] = $segment_label; $schema['properties']['intervals']['items']['properties']['subtotals']['properties']['segments']['items']['properties']['segment_label'] = $segment_label; return $this->add_additional_fields_schema( $schema ); } /** * Set the default results to 0 if API returns an empty array * * @internal * @param Mixed $results Report data. * @return object */ public function set_default_report_data( $results ) { if ( empty( $results ) ) { $results = new \stdClass(); $results->total = 0; $results->totals = new \stdClass(); $results->totals->items_sold = 0; $results->totals->net_revenue = 0; $results->totals->orders_count = 0; $results->intervals = array(); $results->pages = 1; $results->page_no = 1; } return $results; } /** * Get the query params for collections. * * @return array */ public function get_collection_params() { $params = parent::get_collection_params(); $params['orderby']['enum'] = array( 'date', 'net_revenue', 'coupons', 'refunds', 'shipping', 'taxes', 'net_revenue', 'orders_count', 'items_sold', ); $params['categories'] = array( 'description' => __( 'Limit result to items from the specified categories.', 'woocommerce' ), 'type' => 'array', 'sanitize_callback' => 'wp_parse_id_list', 'validate_callback' => 'rest_validate_request_arg', 'items' => array( 'type' => 'integer', ), ); $params['products'] = array( 'description' => __( 'Limit result to items with specified product ids.', 'woocommerce' ), 'type' => 'array', 'sanitize_callback' => 'wp_parse_id_list', 'validate_callback' => 'rest_validate_request_arg', 'items' => array( 'type' => 'integer', ), ); $params['variations'] = array( 'description' => __( 'Limit result to items with specified variation ids.', 'woocommerce' ), 'type' => 'array', 'sanitize_callback' => 'wp_parse_id_list', 'validate_callback' => 'rest_validate_request_arg', 'items' => array( 'type' => 'integer', ), ); $params['segmentby'] = array( 'description' => __( 'Segment the response by additional constraint.', 'woocommerce' ), 'type' => 'string', 'enum' => array( 'product', 'category', 'variation', ), 'validate_callback' => 'rest_validate_request_arg', ); return $params; } }
Fatal error: Uncaught Error: Class "Automattic\WooCommerce\Admin\API\Reports\Products\Stats\Controller" not found in /htdocs/xn--ceinturedore-leb.com/wp-content/plugins/woocommerce/src/Admin/API/Init.php:169 Stack trace: #0 /htdocs/xn--ceinturedore-leb.com/wp-includes/class-wp-hook.php(324): Automattic\WooCommerce\Admin\API\Init->rest_api_init(Object(WP_REST_Server)) #1 /htdocs/xn--ceinturedore-leb.com/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #2 /htdocs/xn--ceinturedore-leb.com/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #3 /htdocs/xn--ceinturedore-leb.com/wp-includes/rest-api.php(589): do_action('rest_api_init', Object(WP_REST_Server)) #4 /htdocs/xn--ceinturedore-leb.com/wp-includes/rest-api.php(413): rest_get_server() #5 /htdocs/xn--ceinturedore-leb.com/wp-includes/class-wp-hook.php(324): rest_api_loaded(Object(WP)) #6 /htdocs/xn--ceinturedore-leb.com/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #7 /htdocs/xn--ceinturedore-leb.com/wp-includes/plugin.php(565): WP_Hook->do_action(Array) #8 /htdocs/xn--ceinturedore-leb.com/wp-includes/class-wp.php(418): do_action_ref_array('parse_request', Array) #9 /htdocs/xn--ceinturedore-leb.com/wp-includes/class-wp.php(813): WP->parse_request('') #10 /htdocs/xn--ceinturedore-leb.com/wp-includes/functions.php(1336): WP->main('') #11 /htdocs/xn--ceinturedore-leb.com/wp-blog-header.php(16): wp() #12 /htdocs/xn--ceinturedore-leb.com/index.php(17): require('/htdocs/xn--cei...') #13 {main} thrown in /htdocs/xn--ceinturedore-leb.com/wp-content/plugins/woocommerce/src/Admin/API/Init.php on line 169