DataTransferObjects
5 years ago
Models
5 years ago
Repositories
5 years ago
Webhooks
5 years ago
AccountAdminNotices.php
5 years ago
AdminSettingFields.php
5 years ago
AdvancedCardFields.php
5 years ago
AjaxRequestHandler.php
5 years ago
DonationDetailsPage.php
5 years ago
DonationProcessor.php
5 years ago
PayPalClient.php
5 years ago
PayPalCommerce.php
5 years ago
RefreshToken.php
5 years ago
RefundPaymentHandler.php
5 years ago
ScriptLoader.php
5 years ago
Utils.php
5 years ago
onBoardingRedirectHandler.php
5 years ago
Utils.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\PaymentGateways\PayPalCommerce; |
| 4 | |
| 5 | /** |
| 6 | * Class Utils |
| 7 | * |
| 8 | * @since 2.9.0 |
| 9 | */ |
| 10 | class Utils { |
| 11 | /** |
| 12 | * Returns whether or not the PayPal Commerce gateway is active |
| 13 | * |
| 14 | * @since 2.9.0 |
| 15 | * |
| 16 | * @return bool |
| 17 | */ |
| 18 | public static function gatewayIsActive() { |
| 19 | return give_is_gateway_active( PayPalCommerce::GATEWAY_ID ); |
| 20 | } |
| 21 | } |
| 22 |