PATH:
var
/
softaculous
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
includes
<?php /** * Kkart Payment Gateways * * Loads payment gateways via hooks for use in the store. * * @version 2.2.0 * @package Kkart\Classes\Payment */ defined( 'ABSPATH' ) || exit; /** * Payment gateways class. */ class KKART_Payment_Gateways { /** * Payment gateway classes. * * @var array */ public $payment_gateways = array(); /** * The single instance of the class. * * @var KKART_Payment_Gateways * @since 2.1.0 */ protected static $_instance = null; /** * Main KKART_Payment_Gateways Instance. * * Ensures only one instance of KKART_Payment_Gateways is loaded or can be loaded. * * @since 2.1 * @return KKART_Payment_Gateways Main instance */ public static function instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; } /** * Cloning is forbidden. * * @since 2.1 */ public function __clone() { kkart_doing_it_wrong( __FUNCTION__, __( 'Cloning is forbidden.', 'kkart' ), '2.1' ); } /** * Unserializing instances of this class is forbidden. * * @since 2.1 */ public function __wakeup() { kkart_doing_it_wrong( __FUNCTION__, __( 'Unserializing instances of this class is forbidden.', 'kkart' ), '2.1' ); } /** * Initialize payment gateways. */ public function __construct() { $this->init(); } /** * Load gateways and hook in functions. */ public function init() { $load_gateways = array( 'KKART_Gateway_BACS', 'KKART_Gateway_Cheque', 'KKART_Gateway_COD', 'KKART_Gateway_Paypal', 'KKART_Gateway_PayFast', 'KKART_Gateway_2Checkout', 'KKART_Gateway_Stripe', //custom payment gateway 'KKART_Gateway_Yoco', 'KKART_Gateway_Ikhokha', ); // Filter. $load_gateways = apply_filters( 'kkart_payment_gateways', $load_gateways ); // Get sort order option. $ordering = (array) get_option( 'kkart_gateway_order' ); $order_end = 999; // Load gateways in order. foreach ( $load_gateways as $gateway ) { if ( is_string( $gateway ) && class_exists( $gateway ) ) { $gateway = new $gateway(); } // Gateways need to be valid and extend KKART_Payment_Gateway. if ( ! is_a( $gateway, 'KKART_Payment_Gateway' ) ) { continue; } if ( isset( $ordering[ $gateway->id ] ) && is_numeric( $ordering[ $gateway->id ] ) ) { // Add in position. $this->payment_gateways[ $ordering[ $gateway->id ] ] = $gateway; } else { // Add to end of the array. $this->payment_gateways[ $order_end ] = $gateway; $order_end++; } } ksort( $this->payment_gateways ); } /** * Get gateways. * * @return array */ public function payment_gateways() { $_available_gateways = array(); if ( count( $this->payment_gateways ) > 0 ) { foreach ( $this->payment_gateways as $gateway ) { $_available_gateways[ $gateway->id ] = $gateway; } } return $_available_gateways; } /** * Get array of registered gateway ids * * @since 2.6.0 * @return array of strings */ public function get_payment_gateway_ids() { return wp_list_pluck( $this->payment_gateways, 'id' ); } /** * Get available gateways. * * @return array */ public function get_available_payment_gateways() { $_available_gateways = array(); foreach ( $this->payment_gateways as $gateway ) { if ( $gateway->is_available() ) { if ( ! is_add_payment_method_page() ) { $_available_gateways[ $gateway->id ] = $gateway; } elseif ( $gateway->supports( 'add_payment_method' ) || $gateway->supports( 'tokenization' ) ) { $_available_gateways[ $gateway->id ] = $gateway; } } } return array_filter( (array) apply_filters( 'kkart_available_payment_gateways', $_available_gateways ), array( $this, 'filter_valid_gateway_class' ) ); } /** * Callback for array filter. Returns true if gateway is of correct type. * * @since 3.6.0 * @param object $gateway Gateway to check. * @return bool */ protected function filter_valid_gateway_class( $gateway ) { return $gateway && is_a( $gateway, 'KKART_Payment_Gateway' ); } /** * Set the current, active gateway. * * @param array $gateways Available payment gateways. */ public function set_current_gateway( $gateways ) { // Be on the defensive. if ( ! is_array( $gateways ) || empty( $gateways ) ) { return; } $current_gateway = false; if ( KKART()->session ) { $current = KKART()->session->get( 'chosen_payment_method' ); if ( $current && isset( $gateways[ $current ] ) ) { $current_gateway = $gateways[ $current ]; } } if ( ! $current_gateway ) { $current_gateway = current( $gateways ); } // Ensure we can make a call to set_current() without triggering an error. if ( $current_gateway && is_callable( array( $current_gateway, 'set_current' ) ) ) { $current_gateway->set_current(); } } /** * Save options in admin. */ public function process_admin_options() { $gateway_order = isset( $_POST['gateway_order'] ) ? kkart_clean( wp_unslash( $_POST['gateway_order'] ) ) : ''; // WPCS: input var ok, CSRF ok. $order = array(); if ( is_array( $gateway_order ) && count( $gateway_order ) > 0 ) { $loop = 0; foreach ( $gateway_order as $gateway_id ) { $order[ esc_attr( $gateway_id ) ] = $loop; $loop++; } } update_option( 'kkart_gateway_order', $order ); } }
[+]
..
[+]
log-handlers
[-] class-kkart-regenerate-images.php
[edit]
[-] class-kkart-order-item-shipping.php
[edit]
[-] class-kkart-order-item-product.php
[edit]
[-] class-kkart-privacy-background-process.php
[edit]
[-] class-kkart-data-exception.php
[edit]
[+]
traits
[-] class-kkart-embed.php
[edit]
[-] class-kkart-data-store.php
[edit]
[-] kkart-coupon-functions.php
[edit]
[+]
wccom-site
[-] class-kkart-frontend-scripts.php
[edit]
[-] class-kkart-regenerate-images-request.php
[edit]
[+]
gateways
[-] class-kkart-autoloader.php
[edit]
[-] kkart-order-item-functions.php
[edit]
[-] class-kkart-webhook.php
[edit]
[-] kkart-term-functions.php
[edit]
[+]
shipping
[-] class-kkart-product-grouped.php
[edit]
[-] class-kkart-ajax.php
[edit]
[-] class-kkart-privacy-erasers.php
[edit]
[+]
admin
[-] class-kkart-tracker.php
[edit]
[-] class-kkart-order-item-fee.php
[edit]
[+]
customizer
[-] kkart-conditional-functions.php
[edit]
[-] class-kkart-tax.php
[edit]
[-] class-kkart-product-variable.php
[edit]
[+]
widgets
[-] kkart-webhook-functions.php
[edit]
[-] class-kkart-api.php
[edit]
[+]
payment-tokens
[-] premium_functions.php
[edit]
[-] class-kkart-order-refund.php
[edit]
[-] class-kkart-shipping-zone.php
[edit]
[+]
tracks
[-] class-kkart-structured-data.php
[edit]
[-] class-kkart-form-handler.php
[edit]
[-] class-kkart-emails.php
[edit]
[-] class-kkart-post-data.php
[edit]
[-] class-kkart-rest-authentication.php
[edit]
[-] class-kkart-geolite-integration.php
[edit]
[-] kkart-attribute-functions.php
[edit]
[-] class-kkart-background-emailer.php
[edit]
[-] class-kkart-shipping-zones.php
[edit]
[-] class-kkart-comments.php
[edit]
[+]
legacy
[-] class-kkart-product-variation.php
[edit]
[+]
theme-support
[+]
data-stores
[-] class-kkart-cart-session.php
[edit]
[+]
integrations
[-] class-kkart-session-handler.php
[edit]
[-] class-kkart.php
[edit]
[-] class-kkart-geolocation.php
[edit]
[-] class-kkart-discounts.php
[edit]
[-] class-kkart-payment-gateways.php
[edit]
[-] class-kkart-install.php
[edit]
[+]
abstracts
[-] class-kkart-privacy.php
[edit]
[-] kkart-page-functions.php
[edit]
[-] class-kkart-background-updater.php
[edit]
[-] class-kkart-customer-download.php
[edit]
[-] shortcodes.php
[edit]
[-] class-kkart-deprecated-action-hooks.php
[edit]
[-] kkart-order-functions.php
[edit]
[+]
walkers
[-] kkart-widget-functions.php
[edit]
[-] class-kkart-countries.php
[edit]
[-] class-kkart-payment-tokens.php
[edit]
[-] class-kkart-rate-limiter.php
[edit]
[-] class-kkart-coupon.php
[edit]
[-] body-props-settings.php
[edit]
[-] class-kkart-order-item-meta.php
[edit]
[-] class-kkart-shortcodes.php
[edit]
[-] class-kkart-auth.php
[edit]
[-] class-kkart-logger.php
[edit]
[-] class-kkart-product-simple.php
[edit]
[-] class-kkart-order-item.php
[edit]
[-] class-kkart-log-levels.php
[edit]
[-] kkart-stock-functions.php
[edit]
[-] class-kkart-checkout.php
[edit]
[+]
emails
[+]
interfaces
[-] class-kkart-customer.php
[edit]
[-] class-kkart-geo-ip.php
[edit]
[-] class-kkart-customer-download-log.php
[edit]
[+]
rest-api
[+]
cli
[-] class-kkart-integrations.php
[edit]
[-] shortcode_functions.php
[edit]
[-] kkart-template-hooks.php
[edit]
[-] class-kkart-datetime.php
[edit]
[-] class-kkart-deprecated-filter-hooks.php
[edit]
[-] class-kkart-breadcrumb.php
[edit]
[-] class-kkart-shipping-rate.php
[edit]
[-] class-kkart-order-query.php
[edit]
[+]
import
[-] kkart-rest-functions.php
[edit]
[-] kkart-notice-functions.php
[edit]
[-] class-kkart-product-query.php
[edit]
[-] class-kkart-register-wp-admin-settings.php
[edit]
[-] class-kkart-product-attribute.php
[edit]
[+]
shortcodes
[-] kkart-user-functions.php
[edit]
[-] kkart-template-functions.php
[edit]
[-] class-kkart-download-handler.php
[edit]
[-] class-kkart-validation.php
[edit]
[-] class-kkart-order-item-tax.php
[edit]
[-] class-kkart-product-external.php
[edit]
[-] kkart-formatting-functions.php
[edit]
[-] class-kkart-privacy-exporters.php
[edit]
[-] class-kkart-post-types.php
[edit]
[-] class-kkart-cli.php
[edit]
[-] class-kkart-query.php
[edit]
[-] premium.php
[edit]
[-] kkart-cart-functions.php
[edit]
[-] class-kkart-cache-helper.php
[edit]
[-] class-kkart-https.php
[edit]
[-] kkart-core-functions.php
[edit]
[-] template.php
[edit]
[-] class-kkart-order-factory.php
[edit]
[+]
libraries
[-] class-kkart-cart.php
[edit]
[-] class-kkart-meta-data.php
[edit]
[-] kkart-account-functions.php
[edit]
[-] class-kkart-order-item-coupon.php
[edit]
[-] class-kkart-cart-totals.php
[edit]
[-] class-kkart-template-loader.php
[edit]
[+]
queue
[-] class-kkart-cart-fees.php
[edit]
[-] class-kkart-shipping.php
[edit]
[-] class-kkart-product-factory.php
[edit]
[+]
export
[-] class-kkart-product-download.php
[edit]
[-] kkart-product-functions.php
[edit]
[-] class-kkart-order.php
[edit]
[-] kkart-update-functions.php
[edit]
[-] class-kkart-rest-exception.php
[edit]