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
| 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 |