CSS Classes. * * @since 2.0.0 * @return array */ protected function classes() { return [ 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', ]; } /** * Returns an array with values => CSS Classes. * * @since 2.0.0 * @return array */ protected function icon_classes() { return [ 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', ]; } /** * Returns an array with values => labels. * * @since 2.0.0 * @return array */ protected function labels() { return [ 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'), ]; } }