23 lines
405 B
PHP
23 lines
405 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Plugins\Store\Gateways;
|
||
|
|
|
||
|
|
class StripeGateway implements GatewayInterface
|
||
|
|
{
|
||
|
|
public function key(): string
|
||
|
|
{
|
||
|
|
return 'stripe';
|
||
|
|
}
|
||
|
|
|
||
|
|
public function label(): string
|
||
|
|
{
|
||
|
|
return 'Stripe';
|
||
|
|
}
|
||
|
|
|
||
|
|
public function isEnabled(array $settings): bool
|
||
|
|
{
|
||
|
|
return (string)($settings['store_stripe_enabled'] ?? '0') === '1';
|
||
|
|
}
|
||
|
|
}
|