📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 14:00:04
📂
/ (Root)
/
home
/
orkouolp
/
web
/
orkofarms.com
/
wp-content
/
plugins
/
woocommerce
/
src
/
Internal
/
Agentic
/
Enums
/
Specs
📍 /home/orkouolp/web/orkofarms.com/wp-content/plugins/woocommerce/src/Internal/Agentic/Enums/Specs
🔄 Refresh
✏️
Editing: CheckoutSessionStatus.php
Writable
<?php declare(strict_types=1); namespace Automattic\WooCommerce\Internal\Agentic\Enums\Specs; /** * Checkout session status values as defined in the Agentic Commerce Protocol. */ class CheckoutSessionStatus { /** * Session is not ready for payment (missing required information). */ const NOT_READY_FOR_PAYMENT = 'not_ready_for_payment'; /** * Session is ready for payment. */ const READY_FOR_PAYMENT = 'ready_for_payment'; /** * Session has been completed (payment successful). */ const COMPLETED = 'completed'; /** * Session has been canceled. */ const CANCELED = 'canceled'; /** * Session is in progress (payment initiated but not complete). */ const IN_PROGRESS = 'in_progress'; /** * Allowed statuses for update operations. */ const ALLOWED_STATUSES_FOR_UPDATE = array( self::NOT_READY_FOR_PAYMENT, self::READY_FOR_PAYMENT ); }
💾 Save Changes
❌ Cancel