PluginProbe
WCPOS – Point of Sale (POS) plugin for WooCommerce / trunk
WCPOS – Point of Sale (POS) plugin for WooCommerce vtrunk
1.10.15 1.10.13 1.10.14 1.10.12 1.10.11 1.10.10 1.10.9 1.10.8 untagged-3d9b7ccddc54df87c672 1.10.7 1.10.6 1.10.5 1.10.3 1.10.4 1.10.2 1.10.1 1.10.0 1.9.17 1.9.15 1.9.16 1.9.14 1.9.13 1.9.12 1.9.11 1.9.10 All 159 releases
woocommerce-pos / includes / API / V2 / Data_Order_Statuses_Controller.php
includes/API/V2
Proxy 17 hours ago Writers 2 weeks ago Auth.php 453 B 3 weeks ago Cashier.php 462 B 3 weeks ago Catalog_Proxy_Controller.php 5.5 KB 3 weeks ago Changes_Controller.php 29.4 KB 3 weeks ago Checkout_Controller.php 498 B 3 weeks ago Data_Order_Statuses_Controller.php 531 B 3 weeks ago Digests_Controller.php 5.7 KB 3 weeks ago Echo_Probe.php 3.1 KB 2 weeks ago Extensions.php 471 B 3 weeks ago Gateway_Bootstrap_Controller.php 525 B 3 weeks ago Integrity_Controller.php 21.4 KB 17 hours ago Logs.php 453 B 3 weeks ago Order_Email_Controller.php 1.5 KB 1 day ago Orders_Controller.php 9.7 KB 2 weeks ago Payment_Gateways.php 489 B 3 weeks ago Ping.php 8.5 KB 57 minutes ago Print_Jobs_Controller.php 504 B 3 weeks ago Receipts_Controller.php 498 B 3 weeks ago Resolve_Controller.php 7.8 KB 3 weeks ago Settings.php 465 B 3 weeks ago Shipping_Methods_Controller.php 522 B 3 weeks ago Site.php 2.5 KB 3 weeks ago Status_Controller.php 1.4 KB 3 weeks ago Stores.php 459 B 3 weeks ago Tax_Classes_Controller.php 507 B 3 weeks ago Templates_Controller.php 501 B 3 weeks ago Uuid_Backfill_Controller.php 14.1 KB 3 weeks ago Variations_Controller.php 27.2 KB 17 hours ago Write_Controller.php 42.3 KB 6 days ago

Data_Order_Statuses_Controller.php in WCPOS – Point of Sale (POS) plugin for WooCommerce trunk, at includes/API/V2/Data_Order_Statuses_Controller.php

22 lines 531 B Raw Download Zip
1 <?php
2 /**
3 * WCPOS REST API v2 service pass-through.
4 *
5 * @package WCPOS\WooCommercePOS\API\V2
6 */
7
8 namespace WCPOS\WooCommercePOS\API\V2;
9
10 /**
11 * The wcpos/v2 pass-through of the v1 Data_Order_Statuses_Controller service — identical behavior,
12 * versioned namespace (map #544 boundary ruling: everything under one version).
13 */
14 class Data_Order_Statuses_Controller extends \WCPOS\WooCommercePOS\API\V1\Data_Order_Statuses_Controller {
15 /**
16 * Endpoint namespace.
17 *
18 * @var string
19 */
20 protected $namespace = 'wcpos/v2';
21 }
22