Initial Commit

This commit is contained in:
David Stone
2024-11-30 18:24:12 -07:00
commit e8f7955c1c
5432 changed files with 1397750 additions and 0 deletions

View File

@ -0,0 +1,97 @@
<?php
/**
* Payment Status enum.
*
* @package WP_Ultimo
* @subpackage WP_Ultimo\Database\Payments
* @since 2.0.0
*/
namespace WP_Ultimo\Database\Payments;
// Exit if accessed directly
defined('ABSPATH') || exit;
use \WP_Ultimo\Database\Engine\Enum;
/**
* Payment Status.
*
* @since 2.0.0
*/
class Payment_Status extends Enum {
/**
* Default product type.
*/
const __default = 'pending'; // phpcs:ignore
const PENDING = 'pending';
const COMPLETED = 'completed';
const REFUND = 'refunded';
const PARTIAL_REFUND = 'partially-refunded';
const PARTIAL = 'partially-paid';
const FAILED = 'failed';
const CANCELLED = 'cancelled';
/**
* Returns an array with values => CSS Classes.
*
* @since 2.0.0
* @return array
*/
protected function classes() {
return array(
static::PENDING => 'wu-bg-gray-200 wu-text-gray-700',
static::COMPLETED => 'wu-bg-green-200 wu-text-green-700',
static::REFUND => 'wu-bg-blue-200 wu-text-gray-700',
static::PARTIAL_REFUND => 'wu-bg-blue-200 wu-text-gray-700',
static::PARTIAL => 'wu-bg-yellow-200 wu-text-yellow-700',
static::FAILED => 'wu-bg-red-200 wu-text-red-700',
static::CANCELLED => 'wu-bg-orange-200 wu-text-orange-700',
);
} // end classes;
/**
* Returns an array with values => CSS Classes.
*
* @since 2.0.0
* @return array
*/
protected function icon_classes() {
return array(
static::PENDING => 'wu-align-middle dashicons-wu-clock wu-text-gray-700',
static::COMPLETED => 'wu-align-middle dashicons-wu-check wu-text-green-700',
static::REFUND => 'wu-align-middle dashicons-wu-cw wu-text-gray-700',
static::PARTIAL_REFUND => 'wu-align-middle dashicons-wu-cw wu-text-gray-700',
static::PARTIAL => 'wu-align-middle dashicons-wu-cw wu-text-yellow-700',
static::FAILED => 'wu-align-middle dashicons-wu-circle-with-cross wu-text-red-700',
static::CANCELLED => 'wu-align-middle dashicons-wu-circle-with-cross wu-text-orange-700',
);
} // end icon_classes;
/**
* Returns an array with values => labels.
*
* @since 2.0.0
* @return array
*/
protected function labels() {
return array(
static::PENDING => __('Pending', 'wp-ultimo'),
static::COMPLETED => __('Completed', 'wp-ultimo'),
static::REFUND => __('Refunded', 'wp-ultimo'),
static::PARTIAL_REFUND => __('Partially Refunded', 'wp-ultimo'),
static::PARTIAL => __('Partially Paid', 'wp-ultimo'),
static::FAILED => __('Failed', 'wp-ultimo'),
static::CANCELLED => __('Cancelled', 'wp-ultimo'),
);
} // end labels;
} // end class Payment_Status;