PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
dokan-pro
/
modules
/
stripe
/
includes
/
Settings
<?php namespace WeDevs\DokanPro\Modules\Stripe\Settings; use WeDevs\Dokan\Traits\Singleton; defined( 'ABSPATH' ) || exit; class RetrieveSettings { use Singleton; /** * Settings array holder * * @var array */ public $settings; /** * Boot method * * @since 3.0.3 * * @param string $gateway * * @return array */ public function boot( $gateway = 'dokan-stripe-connect' ) { $this->settings = get_option( "woocommerce_{$gateway}_settings", [] ); } }
[+]
..
[-] RetrieveSettings.php
[edit]
[-] StripeConnect.php
[edit]