PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
dc-woocommerce-multi-vendor
/
classes
<?php if (!defined('ABSPATH')) { exit; // Exit if accessed directly } class WCMp_Payment_Gateways { /** @var array Array of payment gateway classes. */ public $payment_gateways; public function __construct() { $this->load_default_gateways(); $this->init(); } public function init() { $load_gateways = array( 'WCMp_Gateway_Paypal_Masspay', 'WCMp_Gateway_Paypal_Payout', 'WCMp_Gateway_Stripe_Connect', 'WCMp_Gateway_Bank_Transfer' ); $load_gateways = apply_filters('wcmp_payment_gateways', $load_gateways); foreach ($load_gateways as $gateway) { $load_gateway = is_string($gateway) ? new $gateway() : $gateway; $this->payment_gateways[ $load_gateway->id ] = $load_gateway; } } public function load_default_gateways(){ require_once 'gateways/class-wcmp-gateway-paypal-masspay.php'; require_once 'gateways/class-wcmp-gateway-paypal-payout.php'; require_once 'gateways/class-wcmp-gateway-stripe-connect.php'; require_once 'gateways/class-wcmp-gateway-bank-transfer.php'; } }
[+]
..
[-] class-wcmp-calculate-commission.php
[edit]
[+]
shipping-gateways
[+]
gateways
[-] class-wcmp-ajax.php
[edit]
[-] class-wcmp-cron-job.php
[edit]
[-] class-wcmp-vendor-order-page.php
[edit]
[-] class-wcmp-coupon.php
[edit]
[+]
widgets
[-] class-wcmp-vendor-dashboard.php
[edit]
[-] class-wcmp-shipping-gateway.php
[edit]
[-] class-wcmp-payment-gateways.php
[edit]
[-] class-wcmp-email.php
[edit]
[-] class-wcmp-user.php
[edit]
[-] class-wcmp-shortcode.php
[edit]
[-] class-wcmp-widget-init.php
[edit]
[-] class-wcmp-endpoints.php
[edit]
[-] class-wcmp.php
[edit]
[-] class-wcmp-vendor-details.php
[edit]
[-] class-wcmp-seller-review-rating.php
[edit]
[-] class-wcmp-capabilities.php
[edit]
[+]
reports
[-] class-wcmp-post-commission.php
[edit]
[+]
coupons
[-] class-wcmp-post-notices.php
[edit]
[+]
products
[-] class-wcmp-payment-gateway.php
[edit]
[-] class-wcmp-post-transaction.php
[edit]
[-] class-wcmp-report.php
[edit]
[-] class-wcmp-admin.php
[edit]
[-] class-wcmp-product-qna.php
[edit]
[+]
emails
[-] class-wcmp-taxonomy.php
[edit]
[-] class-wcmp-frontend.php
[edit]
[-] class-wcmp-template.php
[edit]
[-] class-wcmp-product.php
[edit]
[-] class-wcmp-post-university.php
[edit]
[-] class-wcmp-vendor-hooks.php
[edit]
[-] class-wcmp-library.php
[edit]
[+]
shortcode