PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
payment
/
src
/
Enums
<?php namespace Botble\Payment\Enums; use Botble\Base\Supports\Enum; use Botble\Payment\Services\Gateways\PayPalPaymentService; use Botble\Payment\Services\Gateways\StripePaymentService; /** * @method static PaymentMethodEnum STRIPE() * @method static PaymentMethodEnum PAYPAL() * @method static PaymentMethodEnum COD() * @method static PaymentMethodEnum BANK_TRANSFER() */ class PaymentMethodEnum extends Enum { public const STRIPE = 'stripe'; public const PAYPAL = 'paypal'; public const COD = 'cod'; public const BANK_TRANSFER = 'bank_transfer'; /** * @var string */ public static $langPath = 'plugins/payment::payment.methods'; /** * @return string */ public function getServiceClass() { switch ($this->value) { case self::PAYPAL: return PayPalPaymentService::class; case self::STRIPE: return StripePaymentService::class; default: return apply_filters(PAYMENT_FILTER_GET_SERVICE_CLASS, null, $this->value); } } }
[+]
..
[-] PaymentMethodEnum.php
[edit]
[-] PaymentStatusEnum.php
[edit]