PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
dc-woocommerce-multi-vendor
/
admin
<?php class WCMp_Settings_Payment_Stripe_Connect { /** * Holds the values to be used in the fields callbacks */ private $options; private $tab; private $subsection; /** * Start up */ public function __construct($tab, $subsection) { $this->tab = $tab; $this->subsection = $subsection; $this->options = get_option("wcmp_{$this->tab}_{$this->subsection}_settings_name"); $this->settings_page_init(); } /** * Register and add settings */ public function settings_page_init() { global $WCMp; $settings_tab_options = array("tab" => "{$this->tab}", "ref" => &$this, "subsection" => "{$this->subsection}", "sections" => array( "default_settings_section" => array("title" => __('', 'dc-woocommerce-multi-vendor'), // Section one "fields" => array( "testmode" => array('title' => __(' Enable test mode', 'dc-woocommerce-multi-vendor'), 'type' => 'checkbox', 'id' => 'testmode', 'label_for' => 'testmode', 'name' => 'testmode', 'value' => 'Enable'), // Text "config_redirect_uri" => array('title' => __('Config redirect URI', 'dc-woocommerce-multi-vendor'), 'type' => 'label', 'id' => 'config_redirect_uri', 'label_for' => 'config_redirect_uri', 'name' => 'config_redirect_uri', 'value' => admin_url('admin-ajax.php') . "?action=marketplace_stripe_authorize", 'desc' => '<a href="https://dashboard.stripe.com/account/applications/settings" target="_blank">'.__('Copy the URI and configured stripe redirect URI with above.', 'dc-woocommerce-multi-vendor').'</a>'), ), ), "client_settings_section" => array("title" => __('Client data', 'dc-woocommerce-multi-vendor'), // Section one "fields" => array( "test_client_id" => array('title' => __('Test client id', 'dc-woocommerce-multi-vendor'), 'type' => 'password', 'id' => 'test_client_id', 'label_for' => 'test_client_id', 'name' => 'test_client_id', 'hints' => __('Get your development Client id from your stripe account', 'dc-woocommerce-multi-vendor'), 'placeholder' => __('Development client id', 'dc-woocommerce-multi-vendor')), "live_client_id" => array('title' => __('Live client id', 'dc-woocommerce-multi-vendor'), 'type' => 'password', 'id' => 'live_client_id', 'label_for' => 'live_client_id', 'name' => 'live_client_id', 'hints' => __('Get your production Client id from your stripe account', 'dc-woocommerce-multi-vendor'), 'placeholder' => __('Production client id', 'dc-woocommerce-multi-vendor')), ), ), "api_settings_section" => array("title" => __('API keys', 'dc-woocommerce-multi-vendor'), // Section one "fields" => array( "test_publishable_key" => array('title' => __('Test Publishable key', 'dc-woocommerce-multi-vendor'), 'type' => 'password', 'id' => 'test_publishable_key', 'label_for' => 'test_publishable_key', 'name' => 'test_publishable_key', 'hints' => __('Publishable Key, you will get this credential from stripe account apikeys.', 'dc-woocommerce-multi-vendor')), // Text "test_secret_key" => array('title' => __('Test Secret key', 'dc-woocommerce-multi-vendor'), 'type' => 'password', 'id' => 'test_secret_key', 'label_for' => 'test_secret_key', 'name' => 'test_secret_key', 'hints' => __('Secret key, you will get this credential from stripe account apikeys.', 'dc-woocommerce-multi-vendor')), // Text "live_publishable_key" => array('title' => __('Live Publishable key', 'dc-woocommerce-multi-vendor'), 'type' => 'password', 'id' => 'live_publishable_key', 'label_for' => 'live_publishable_key', 'name' => 'live_publishable_key', 'hints' => __('Publishable Key, you will get this credential from stripe account apikeys.', 'dc-woocommerce-multi-vendor')), // Text "live_secret_key" => array('title' => __('Live Secret key', 'dc-woocommerce-multi-vendor'), 'type' => 'password', 'id' => 'live_secret_key', 'label_for' => 'live_secret_key', 'name' => 'live_secret_key', 'hints' => __('Secret key, you will get this credential from stripe account apikeys.', 'dc-woocommerce-multi-vendor')), // Text ), ), ) ); $WCMp->admin->settings->settings_field_withsubtab_init(apply_filters("settings_{$this->tab}_{$this->subsection}_tab_options", $settings_tab_options)); } /** * Sanitize each setting field as needed * * @param array $input Contains all settings fields as array keys */ public function wcmp_payment_stripe_gateway_settings_sanitize($input) { $new_input = array(); $hasError = false; if(isset($input['testmode'])){ $new_input['testmode'] = sanitize_text_field($input['testmode']); } if(isset($input['test_client_id'])){ $new_input['test_client_id'] = sanitize_text_field($input['test_client_id']); } if(isset($input['live_client_id'])){ $new_input['live_client_id'] = sanitize_text_field($input['live_client_id']); } if(isset($input['test_publishable_key'])){ $new_input['test_publishable_key'] = sanitize_text_field($input['test_publishable_key']); } if(isset($input['test_secret_key'])){ $new_input['test_secret_key'] = sanitize_text_field($input['test_secret_key']); } if(isset($input['live_publishable_key'])){ $new_input['live_publishable_key'] = sanitize_text_field($input['live_publishable_key']); } if(isset($input['live_secret_key'])){ $new_input['live_secret_key'] = sanitize_text_field($input['live_secret_key']); } if (!$hasError) { add_settings_error( "wcmp_{$this->tab}_{$this->subsection}_settings_name", esc_attr("wcmp_{$this->tab}_{$this->subsection}_settings_admin_updated"), __('Stripe Gateway Settings Updated', 'dc-woocommerce-multi-vendor'), 'updated' ); } return apply_filters("settings_{$this->tab}_{$this->subsection}_tab_new_input", $new_input, $input); } /** * Print the Section text */ public function default_settings_section_info() { } /** * Print the Section text */ public function WCMp_Stripe_Gateway_store_policies_admin_details_section_info() { } }
[+]
..
[-] class-wcmp-settings-payment-stripe_gateway.php
[edit]
[-] class-wcmp-settings-capabilities-product.php
[edit]
[-] class-wcmp-settings-payment-paypal_payout.php
[edit]
[-] class-wcmp-settings-payment.php
[edit]
[-] class-wcmp-settings-vendor-general.php
[edit]
[-] class-wcmp-settings-vendor-registration.php
[edit]
[-] class-wcmp-settings-general.php
[edit]
[-] class-wcmp-settings-vendor-dashboard.php
[edit]
[-] class-wcmp-settings-general-policies.php
[edit]
[-] class-wcmp-settings-vendors.php
[edit]
[-] class-wcmp-admin-setup-wizard.php
[edit]
[-] class-wcmp-settings-general-customer_support_details.php
[edit]
[-] class-wcmp-settings-frontend.php
[edit]
[-] class-wcmp-settings-to_do_list.php
[edit]
[-] class-wcmp-settings-payment-paypal_masspay.php
[edit]
[-] class-wcmp-settings-capabilities-miscellaneous.php
[edit]
[-] class-wcmp-settings-capabilities-order.php
[edit]
[-] class-wcmp-settings.php
[edit]
[-] class-wcmp-settings-wcmp-addons.php
[edit]
[-] class-wcmp-settings-notices.php
[edit]