PluginProbe
WCPOS – Point of Sale (POS) plugin for WooCommerce / 1.10.20
WCPOS – Point of Sale (POS) plugin for WooCommerce v1.10.20
1.10.20 1.10.19 1.10.18 1.10.17 1.10.16 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 All 164 releases
← All changes | includes/Sync/Api.php +3 -0 1.10.5 → 1.10.20 View file →
@@ -54,8 +54,11 @@
54 54 *
55 55 * @return array REST API controllers.
56 56 */
57 57 public static function register_controllers( array $controllers ): array {
58 + // Reason: Init::hook_rows() retains these registrars here, not at plugins_loaded.
59 + // Moving them earlier changes hook visibility and same-priority extension ordering
60 + // before woocommerce_pos_rest_api_controllers runs (including unmarked requests).
58 61 Response_Telemetry::register_hooks();
59 62 Retry_After_Mirror::register_hooks();
60 63 Response_Envelope::register_hooks();
61 64 $controllers['sync-status'] = Status_Controller::class;