Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversion/wp-content/plugins/give/src/Donations/ValueObjects/ |
Upload File : |
<?php
namespace Give\Donations\ValueObjects;
use Give\Framework\Support\ValueObjects\Enum;
/**
* @since 2.19.6
*
* @method static DonationStatus PENDING()
* @method static DonationStatus COMPLETE()
* @method static DonationStatus REFUNDED()
* @method static DonationStatus FAILED()
* @method static DonationStatus CANCELLED()
* @method static DonationStatus ABANDONED()
* @method static DonationStatus PREAPPROVAL()
* @method static DonationStatus PROCESSING()
* @method static DonationStatus REVOKED()
* @method static DonationStatus RENEWAL() @deprecated
* @method bool isPending()
* @method bool isComplete()
* @method bool isRefunded()
* @method bool isFailed()
* @method bool isCancelled()
* @method bool isAbandoned()
* @method bool isPreapproval()
* @method bool isProcessing()
* @method bool isRevoked()
* @method bool isRenewal() @deprecated Do not use this. Instead, set the donation type to "renewal" and use COMPLETE status.
*/
class DonationStatus extends Enum
{
const PENDING = 'pending';
const PROCESSING = 'processing';
const COMPLETE = 'publish';
const REFUNDED = 'refunded';
const FAILED = 'failed';
const CANCELLED = 'cancelled';
const ABANDONED = 'abandoned';
const PREAPPROVAL = 'preapproval';
const REVOKED = 'revoked';
/**
* @deprecated 2.23.0 Use DonationStatus::COMPLETE
*/
const RENEWAL = 'give_subscription';
/**
* @since 2.24.0
*
* @return array
*/
public static function labels(): array
{
return [
self::PENDING => __('Pending', 'give'),
self::PROCESSING => __('Processing', 'give'),
self::COMPLETE => __('Completed', 'give'),
self::REFUNDED => __('Refunded', 'give'),
self::FAILED => __('Failed', 'give'),
self::CANCELLED => __('Cancelled', 'give'),
self::ABANDONED => __('Abandoned', 'give'),
self::PREAPPROVAL => __('Preapproval', 'give'),
self::REVOKED => __('Revoked', 'give'),
self::RENEWAL => __('Renewal', 'give'),
];
}
/**
* @since 2.24.0
*
* @return string
*/
public function label(): string
{
return self::labels()[ $this->getValue() ];
}
}