| Server IP : 38.190.208.107 / Your IP : 216.73.217.39 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : www ( 1000) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.8/wp-content/plugins/woocommerce/src/Internal/Agentic/Enums/Specs/ |
Upload File : |
<?php
declare(strict_types=1);
namespace Automattic\WooCommerce\Internal\Agentic\Enums\Specs;
/**
* Order status values as defined in the Agentic Commerce Protocol.
*
* @since 10.3.0
*/
class OrderStatus {
/**
* Order has been created.
*/
const CREATED = 'created';
/**
* Order requires manual review.
*/
const MANUAL_REVIEW = 'manual_review';
/**
* Order has been confirmed.
*/
const CONFIRMED = 'confirmed';
/**
* Order has been canceled.
*/
const CANCELED = 'canceled';
/**
* Order has been shipped.
*/
const SHIPPED = 'shipped';
/**
* Order has been fulfilled.
*/
const FULFILLED = 'fulfilled';
/**
* Get all valid order statuses.
*
* @return array Array of valid order status values.
*/
public static function get_all() {
return array(
self::CREATED,
self::MANUAL_REVIEW,
self::CONFIRMED,
self::CANCELED,
self::SHIPPED,
self::FULFILLED,
);
}
/**
* Check if a status is valid.
*
* @param string $status Status to check.
* @return bool True if valid, false otherwise.
*/
public static function is_valid( $status ) {
return in_array( $status, self::get_all(), true );
}
}