✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/builxejc/public_html/wp-content/plugins/woocommerce/includes//class-wc-payment-gateways.php
<?php
/**
 * WooCommerce Payment Gateways
 *
 * Loads payment gateways via hooks for use in the store.
 *
 * @version 2.2.0
 * @package WooCommerce\Classes\Payment
 */

use Automattic\WooCommerce\Enums\PaymentGatewayFeature;
use Automattic\WooCommerce\Internal\Admin\Settings\Payments as SettingsPaymentsService;
use Automattic\WooCommerce\Internal\Admin\Settings\PaymentsProviders;
use Automattic\WooCommerce\Internal\Logging\SafeGlobalFunctionProxy;
use Automattic\WooCommerce\Proxies\LegacyProxy;
use Automattic\WooCommerce\Utilities\ArrayUtil;

defined( 'ABSPATH' ) || exit;

/**
 * Payment gateways class.
 */
class WC_Payment_Gateways {

	/**
	 * Payment gateway classes.
	 *
	 * @var array
	 */
	public $payment_gateways = array();

	/**
	 * The single instance of the class.
	 *
	 * @var WC_Payment_Gateways
	 * @since 2.1.0
	 */
	protected static $_instance = null;

	/**
	 * Main WC_Payment_Gateways Instance.
	 *
	 * Ensures only one instance of WC_Payment_Gateways is loaded or can be loaded.
	 *
	 * @since 2.1
	 * @return WC_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() {
		wc_doing_it_wrong( __FUNCTION__, __( 'Cloning is forbidden.', 'woocommerce' ), '2.1' );
	}

	/**
	 * Unserializing instances of this class is forbidden.
	 *
	 * @since 2.1
	 */
	public function __wakeup() {
		wc_doing_it_wrong( __FUNCTION__, __( 'Unserializing instances of this class is forbidden.', 'woocommerce' ), '2.1' );
	}

	/**
	 * Initialize payment gateways.
	 */
	public function __construct() {
		$this->init();
	}

	/**
	 * Load gateways and hook in functions.
	 */
	public function init() {
		$load_gateways = array(
			'WC_Gateway_BACS',
			'WC_Gateway_Cheque',
			'WC_Gateway_COD',
			'WC_Gateway_Paypal',
		);

		// Filter.
		$load_gateways = apply_filters( 'woocommerce_payment_gateways', $load_gateways );

		// No wp_prime_option_caches needed: gateway settings are autoloaded (WC_Settings_API saves with autoload='yes').

		// Get sort order option.
		$ordering  = (array) get_option( 'woocommerce_gateway_order' );
		$order_end = 999;

		// Load gateways in order.
		foreach ( $load_gateways as $gateway ) {
			if ( is_string( $gateway ) && class_exists( $gateway ) ) {
				$gateway = new $gateway();
			}

			if ( is_a( $gateway, 'WC_Gateway_Paypal' ) ) {
				WC_Gateway_Paypal::set_instance( $gateway );
				if ( ! $this->should_load_paypal_standard() ) {
					continue;
				}
			}

			// Gateways need to be valid and extend WC_Payment_Gateway.
			if ( ! is_a( $gateway, 'WC_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 );

		add_action( 'wc_payment_gateways_initialized', array( $this, 'on_payment_gateways_initialized' ) );
		/**
		 * Hook that is called when the payment gateways have been initialized.
		 *
		 * @param WC_Payment_Gateways $wc_payment_gateways The payment gateways instance.
		 * @since 8.5.0
		 */
		do_action( 'wc_payment_gateways_initialized', $this );
	}

	// phpcs:disable Generic.CodeAnalysis.UnusedFunctionParameter.Found

	/**
	 * Hook into payment gateway settings changes.
	 *
	 * @param WC_Payment_Gateways $wc_payment_gateways The WC_Payment_Gateways instance.
	 * @since 8.5.0
	 *
	 * @internal For exclusive usage of WooCommerce core, backwards compatibility not guaranteed.
	 */
	public function on_payment_gateways_initialized( WC_Payment_Gateways $wc_payment_gateways ) {
		foreach ( $this->payment_gateways as $gateway ) {
			$option_key = $gateway->get_option_key();
			add_action(
				'add_option_' . $option_key,
				function ( $option, $value ) use ( $gateway ) {
					$this->payment_gateway_settings_option_changed( $gateway, $value, $option );
				},
				10,
				2
			);
			add_action(
				'update_option_' . $option_key,
				function ( $old_value, $value, $option ) use ( $gateway ) {
					$this->payment_gateway_settings_option_changed( $gateway, $value, $option, $old_value );
				},
				10,
				3
			);
		}
	}

	// phpcs:enable Generic.CodeAnalysis.UnusedFunctionParameter.Found

	/**
	 * Callback for when a gateway settings option was added or updated.
	 *
	 * @param WC_Payment_Gateway $gateway   The gateway for which the option was added or updated.
	 * @param mixed              $value     New value.
	 * @param string             $option    Option name.
	 * @param mixed              $old_value Old value. `null` when called via add_option_ hook.
	 * @since 8.5.0
	 */
	private function payment_gateway_settings_option_changed( $gateway, $value, $option, $old_value = null ) {
		if ( $this->was_gateway_enabled( $value, $old_value ) ) {
			$logger = wc_get_container()->get( LegacyProxy::class )->call_function( 'wc_get_logger' );
			$logger->info( sprintf( 'Payment gateway enabled: "%s"', $gateway->get_method_title() ) );

			/**
			 * Fires when a payment gateway has been enabled.
			 *
			 * Used by WC_Email_Admin_Payment_Gateway_Enabled to send an admin notification email.
			 * This action is registered as a transactional email action in WC_Emails::init_transactional_emails(),
			 * which ensures WC_Emails is instantiated before the _notification variant is fired.
			 *
			 * @param WC_Payment_Gateway $gateway The gateway that was enabled.
			 *
			 * @since 10.7.0
			 */
			do_action( 'woocommerce_payment_gateway_enabled', $gateway );

			// Track the gateway enable.
			$this->record_gateway_event( 'enable', $gateway );
		}

		if ( $this->was_gateway_disabled( $value, $old_value ) ) {
			// This is a change to a payment gateway's settings and it was just disabled. Let's track it.
			$this->record_gateway_event( 'disable', $gateway );
		}
	}

	/**
	 * Determines from changes in settings if a gateway was enabled.
	 *
	 * @param array $value New value.
	 * @param array $old_value Old value.
	 * @return bool Whether the gateway was enabled or not.
	 */
	private function was_gateway_enabled( $value, $old_value = null ) {
		if ( null === $old_value ) {
			// There was no old value, so this is a new option.
			if ( ! empty( $value ) && is_array( $value ) && isset( $value['enabled'] ) && 'yes' === $value['enabled'] && isset( $value['title'] ) ) {
				return true;
			}
			return false;
		}
		// There was an old value, so this is an update.
		if (
			ArrayUtil::get_value_or_default( $value, 'enabled' ) === 'yes' &&
			ArrayUtil::get_value_or_default( $old_value, 'enabled' ) !== 'yes' ) {
			return true;
		}
		return false;
	}

	/**
	 * Determines from changes in settings if a gateway was disabled.
	 *
	 * @param array $value New value.
	 * @param array $old_value Old value.
	 * @return bool Whether the gateway was disabled or not.
	 */
	private function was_gateway_disabled( $value, $old_value = null ) {
		if ( null === $old_value ) {
			// There was no old value, so this is a new option.
			// We don't consider a new option for determining if a gateway was disabled.
			return false;
		}

		// There was an old value, so this is an update.
		if (
			ArrayUtil::get_value_or_default( $value, 'enabled' ) === 'no' &&
			ArrayUtil::get_value_or_default( $old_value, 'enabled' ) !== 'no' ) {
			return true;
		}

		return false;
	}

	/**
	 * 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 readable payment method name from payment method ID.
	 *
	 * Retrieves the payment gateway title from the payment method ID by loading
	 * the payment gateway instance.
	 *
	 * @param string $payment_gateway_id Payment method ID (e.g., "stripe", "paypal", "bacs").
	 * @return string Payment method name or ID if name not found.
	 */
	public function get_payment_gateway_name_by_id( string $payment_gateway_id ): string {
		// Get available payment gateways.
		$payment_gateways = $this->payment_gateways();

		// Check if the payment method exists and has a title.
		if ( isset( $payment_gateways[ $payment_gateway_id ] ) ) {
			$gateway = $payment_gateways[ $payment_gateway_id ];
			if ( is_object( $gateway ) && method_exists( $gateway, 'get_title' ) ) {
				return $gateway->get_title();
			} elseif ( is_object( $gateway ) && isset( $gateway->title ) ) {
				return $gateway->title;
			}
		}

		// Return the ID as fallback if no title found.
		return $payment_gateway_id;
	}

	/**
	 * 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 for checkout.
	 *
	 * This should be used when displaying the available gateways/payment methods to the user,
	 * not in the WP admin or REST API contexts where there is no WC session.
	 * This is because the logic that hooks into the available gateways filter
	 * may try to rely on the existence of a WC session - a valid thing to do,
	 * and cause fatal errors when the session is not available.
	 *
	 * @return array The available payment gateways.
	 */
	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( PaymentGatewayFeature::ADD_PAYMENT_METHOD ) || $gateway->supports( PaymentGatewayFeature::TOKENIZATION ) ) {
					$_available_gateways[ $gateway->id ] = $gateway;
				}
			}
		}

		return array_filter( (array) apply_filters( 'woocommerce_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, 'WC_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 ( WC()->session ) {
			$current = WC()->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'] ) ? wc_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( 'woocommerce_gateway_order', $order );
	}

	/**
	 * Determines if PayPal Standard should be loaded.
	 *
	 * @since 5.5.0
	 * @return bool Whether PayPal Standard should be loaded or not.
	 */
	protected function should_load_paypal_standard() {
		$paypal = WC_Gateway_Paypal::get_instance();
		return $paypal->should_load();
	}

	/**
	 * Send a Tracks event.
	 *
	 * By default, Woo adds `url`, `blog_lang`, `blog_id`, `store_id`, `products_count`, and `wc_version`
	 * properties to every event.
	 *
	 * @param string             $name    The event name.
	 *                                    If it is not prefixed, it will be with the standard prefix.
	 * @param WC_Payment_Gateway $gateway The payment gateway object.
	 *
	 * @return void
	 */
	private function record_gateway_event( string $name, $gateway ) {
		if ( ! function_exists( 'wc_admin_record_tracks_event' ) ) {
			return;
		}

		if ( ! is_a( $gateway, 'WC_Payment_Gateway' ) ) {
			// If the gateway is not a valid payment gateway, we don't record the event.
			return;
		}

		// If the event name is empty, we don't record it.
		if ( empty( $name ) ) {
			return;
		}

		// If the event name is not prefixed, we prefix it.
		$prefix = SettingsPaymentsService::EVENT_PREFIX . 'provider_';
		if ( ! str_starts_with( $name, $prefix ) ) {
			$name = $prefix . $name;
		}

		$properties = array(
			'provider_id'      => $gateway->id,
			'business_country' => WC()->countries->get_base_country(),
		);

		try {
			/**
			 * The Payments Settings [page] service.
			 *
			 * @var SettingsPaymentsService $settings_payments_service
			 */
			$settings_payments_service = wc_get_container()->get( SettingsPaymentsService::class );
			// Get the business country from the Payments Settings service.
			$properties['business_country'] = $settings_payments_service->get_country();

			/**
			 * The Payments Providers service.
			 *
			 * @var PaymentsProviders $payments_providers_service
			 */
			$payments_providers_service = wc_get_container()->get( PaymentsProviders::class );

			$gateway_details = $payments_providers_service->get_payment_gateway_details( $gateway, 0, $properties['business_country'] );
			// If the gateway details have a suggestion ID, we add it to the properties.
			if ( ! empty( $gateway_details['_suggestion_id'] ) ) {
				$properties['suggestion_id'] = $gateway_details['_suggestion_id'];
			}
			if ( ! empty( $gateway_details['plugin']['slug'] ) ) {
				$properties['provider_extension_slug'] = $gateway_details['plugin']['slug'];
			}
		} catch ( \Throwable $e ) {
			// Do nothing but log so we can investigate.
			SafeGlobalFunctionProxy::wc_get_logger()->debug(
				'Failed to gather provider-specific details for gateway: ' . $e->getMessage(),
				array(
					'gateway'   => $gateway->id,
					'source'    => 'settings-payments',
					'exception' => $e,
				)
			);
		}

		wc_admin_record_tracks_event( $name, $properties );
	}
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
abstracts
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
admin
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
blocks
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
cli
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
customizer
--
16 Jun 2026 10.17 AM
builxejc / builxejc
0755
data-stores
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
emails
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
export
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
gateways
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
import
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
integrations
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
interfaces
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
legacy
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
libraries
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
log-handlers
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
payment-tokens
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
product-usage
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
queue
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
react-admin
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
rest-api
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
shipping
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
shortcodes
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
theme-support
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
tracks
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
traits
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
walkers
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
wccom-site
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
widgets
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
class-wc-ajax.php
131.473 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-auth.php
12.69 KB
30 Jul 2024 7.31 PM
builxejc / builxejc
0644
class-wc-autoloader.php
5.268 KB
6 Oct 2025 5.56 PM
builxejc / builxejc
0644
class-wc-background-emailer.php
4.677 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-background-updater.php
3.452 KB
20 Aug 2020 11.18 PM
builxejc / builxejc
0644
class-wc-brands-brand-settings-manager.php
1.783 KB
23 Sep 2024 8.44 PM
builxejc / builxejc
0644
class-wc-brands-coupons.php
6.894 KB
21 Jan 2025 6.53 PM
builxejc / builxejc
0644
class-wc-brands.php
34.8 KB
19 Jan 2026 2.46 PM
builxejc / builxejc
0644
class-wc-breadcrumb.php
10.41 KB
23 Feb 2026 5.58 PM
builxejc / builxejc
0644
class-wc-cache-helper.php
12.792 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-cart-fees.php
3.367 KB
26 Sep 2023 9.42 PM
builxejc / builxejc
0644
class-wc-cart-session.php
25.366 KB
30 Mar 2026 5.12 PM
builxejc / builxejc
0644
class-wc-cart-totals.php
28.479 KB
29 Jul 2025 12.34 PM
builxejc / builxejc
0644
class-wc-cart.php
75.572 KB
30 Mar 2026 5.12 PM
builxejc / builxejc
0644
class-wc-checkout.php
50.352 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-cli.php
3.339 KB
1 Sep 2025 11.44 PM
builxejc / builxejc
0644
class-wc-comments.php
23.077 KB
23 Feb 2026 5.58 PM
builxejc / builxejc
0644
class-wc-countries.php
51.687 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-coupon.php
44.637 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-customer-download-log.php
3.371 KB
20 Aug 2020 11.18 PM
builxejc / builxejc
0644
class-wc-customer-download.php
10.339 KB
30 Jul 2024 7.31 PM
builxejc / builxejc
0644
class-wc-customer.php
33.277 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-data-exception.php
1.29 KB
23 May 2018 7.30 PM
builxejc / builxejc
0644
class-wc-data-store.php
6.594 KB
19 Oct 2022 12.34 AM
builxejc / builxejc
0644
class-wc-datetime.php
2.256 KB
20 Apr 2022 6.50 AM
builxejc / builxejc
0644
class-wc-deprecated-action-hooks.php
6.588 KB
27 Feb 2024 6.59 PM
builxejc / builxejc
0644
class-wc-deprecated-filter-hooks.php
7.342 KB
30 Mar 2026 5.12 PM
builxejc / builxejc
0644
class-wc-discounts.php
36.644 KB
29 Jul 2025 12.34 PM
builxejc / builxejc
0644
class-wc-download-handler.php
28.372 KB
18 Dec 2024 10.19 PM
builxejc / builxejc
0644
class-wc-emails.php
39.638 KB
25 May 2026 2.01 PM
builxejc / builxejc
0644
class-wc-embed.php
4.24 KB
21 Jan 2025 6.53 PM
builxejc / builxejc
0644
class-wc-form-handler.php
48.171 KB
9 Mar 2026 4.07 PM
builxejc / builxejc
0644
class-wc-frontend-scripts.php
34.438 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-geo-ip.php
30.429 KB
6 Oct 2025 5.56 PM
builxejc / builxejc
0644
class-wc-geolite-integration.php
1.988 KB
16 Jan 2020 6.10 AM
builxejc / builxejc
0644
class-wc-geolocation.php
11.464 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-https.php
4.335 KB
20 Jun 2023 11.45 PM
builxejc / builxejc
0644
class-wc-install.php
116.715 KB
25 May 2026 2.01 PM
builxejc / builxejc
0644
class-wc-integrations.php
1.277 KB
20 Aug 2020 11.18 PM
builxejc / builxejc
0644
class-wc-log-levels.php
3.898 KB
30 Jan 2024 11.24 PM
builxejc / builxejc
0644
class-wc-logger.php
9.413 KB
23 Feb 2026 5.58 PM
builxejc / builxejc
0644
class-wc-meta-data.php
2.207 KB
20 Apr 2022 6.50 AM
builxejc / builxejc
0644
class-wc-order-factory.php
8.979 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-order-item-coupon.php
4.077 KB
22 Dec 2021 12.24 AM
builxejc / builxejc
0644
class-wc-order-item-fee.php
9.988 KB
19 Jan 2026 2.46 PM
builxejc / builxejc
0644
class-wc-order-item-meta.php
5.803 KB
22 Dec 2021 12.24 AM
builxejc / builxejc
0644
class-wc-order-item-product.php
17.606 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-order-item-shipping.php
9.585 KB
19 Jan 2026 2.46 PM
builxejc / builxejc
0644
class-wc-order-item-tax.php
6.488 KB
22 Dec 2021 12.24 AM
builxejc / builxejc
0644
class-wc-order-item.php
21.394 KB
19 Jan 2026 2.46 PM
builxejc / builxejc
0644
class-wc-order-query.php
2.552 KB
23 Feb 2026 5.58 PM
builxejc / builxejc
0644
class-wc-order-refund.php
5.991 KB
12 May 2025 9.07 PM
builxejc / builxejc
0644
class-wc-order.php
78.376 KB
11 May 2026 5.17 PM
builxejc / builxejc
0644
class-wc-payment-gateways.php
14.373 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-payment-tokens.php
6.24 KB
23 Nov 2022 5.58 AM
builxejc / builxejc
0644
class-wc-post-data.php
39.094 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-post-types.php
33.158 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-privacy-background-process.php
1.79 KB
3 Mar 2025 10.28 PM
builxejc / builxejc
0644
class-wc-privacy-erasers.php
13.614 KB
1 Sep 2025 11.44 PM
builxejc / builxejc
0644
class-wc-privacy-exporters.php
14.691 KB
28 Jul 2021 4.11 AM
builxejc / builxejc
0644
class-wc-privacy.php
17.216 KB
23 Jun 2025 7.46 PM
builxejc / builxejc
0644
class-wc-product-attribute.php
7.868 KB
23 Feb 2026 5.58 PM
builxejc / builxejc
0644
class-wc-product-download.php
13.178 KB
23 Feb 2026 5.58 PM
builxejc / builxejc
0644
class-wc-product-external.php
4.984 KB
3 Mar 2025 10.28 PM
builxejc / builxejc
0644
class-wc-product-factory.php
4.588 KB
30 Mar 2026 5.12 PM
builxejc / builxejc
0644
class-wc-product-grouped.php
6.811 KB
30 Mar 2026 5.12 PM
builxejc / builxejc
0644
class-wc-product-query.php
2.273 KB
23 Feb 2026 5.58 PM
builxejc / builxejc
0644
class-wc-product-simple.php
2.7 KB
29 Jul 2025 12.34 PM
builxejc / builxejc
0644
class-wc-product-variable.php
23.764 KB
30 Mar 2026 5.12 PM
builxejc / builxejc
0644
class-wc-product-variation.php
20.177 KB
12 May 2025 9.07 PM
builxejc / builxejc
0644
class-wc-query.php
37.013 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-rate-limiter.php
4.004 KB
1 Dec 2021 4.23 AM
builxejc / builxejc
0644
class-wc-regenerate-images-request.php
7.737 KB
25 Jan 2023 3.19 AM
builxejc / builxejc
0644
class-wc-regenerate-images.php
15.436 KB
25 Jun 2024 9.17 PM
builxejc / builxejc
0644
class-wc-register-wp-admin-settings.php
5.05 KB
22 Jun 2021 3.24 PM
builxejc / builxejc
0644
class-wc-rest-authentication.php
21.551 KB
25 Jun 2024 9.17 PM
builxejc / builxejc
0644
class-wc-rest-exception.php
0.27 KB
23 Sep 2020 1.16 AM
builxejc / builxejc
0644
class-wc-session-handler.php
24.572 KB
30 Mar 2026 5.12 PM
builxejc / builxejc
0644
class-wc-shipping-rate.php
9.342 KB
23 Jun 2025 7.46 PM
builxejc / builxejc
0644
class-wc-shipping-zone.php
13.078 KB
23 Sep 2020 1.16 AM
builxejc / builxejc
0644
class-wc-shipping-zones.php
4.995 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
class-wc-shipping.php
13.032 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-shortcodes.php
18.822 KB
21 Jan 2025 6.53 PM
builxejc / builxejc
0644
class-wc-structured-data.php
24.783 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-tax.php
39.871 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-wc-template-loader.php
20.421 KB
12 Nov 2025 6.35 PM
builxejc / builxejc
0644
class-wc-tracker.php
51.495 KB
6 Oct 2025 5.56 PM
builxejc / builxejc
0644
class-wc-validation.php
5.79 KB
28 May 2024 2.28 PM
builxejc / builxejc
0644
class-wc-webhook.php
30.174 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
class-woocommerce.php
63.367 KB
27 May 2026 9.54 PM
builxejc / builxejc
0644
wc-account-functions.php
14.146 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
wc-attribute-functions.php
21.913 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
wc-brands-functions.php
4.17 KB
23 Sep 2024 8.44 PM
builxejc / builxejc
0644
wc-cart-functions.php
20.809 KB
19 Jan 2026 2.46 PM
builxejc / builxejc
0644
wc-conditional-functions.php
15.529 KB
29 Jul 2025 12.34 PM
builxejc / builxejc
0644
wc-core-functions.php
79.001 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
wc-coupon-functions.php
5.564 KB
19 Jan 2026 2.46 PM
builxejc / builxejc
0644
wc-deprecated-functions.php
39.776 KB
23 Feb 2026 5.58 PM
builxejc / builxejc
0644
wc-formatting-functions.php
49.896 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
wc-interactivity-api-functions.php
2.428 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
wc-notice-functions.php
8.492 KB
19 Jan 2026 2.46 PM
builxejc / builxejc
0644
wc-order-functions.php
43.989 KB
11 May 2026 5.17 PM
builxejc / builxejc
0644
wc-order-item-functions.php
5.032 KB
25 Jan 2023 3.19 AM
builxejc / builxejc
0644
wc-order-step-logger-functions.php
5.971 KB
23 Feb 2026 5.58 PM
builxejc / builxejc
0644
wc-page-functions.php
9.986 KB
11 May 2026 5.17 PM
builxejc / builxejc
0644
wc-product-functions.php
69.184 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
wc-rest-functions.php
13.934 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
wc-stock-functions.php
17.433 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
wc-template-functions.php
142.513 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
wc-template-hooks.php
12.843 KB
1 Sep 2025 11.44 PM
builxejc / builxejc
0644
wc-term-functions.php
24.628 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
wc-update-functions.php
107.048 KB
25 May 2026 2.01 PM
builxejc / builxejc
0644
wc-user-functions.php
36.727 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
wc-webhook-functions.php
5.912 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
wc-widget-functions.php
2.015 KB
20 Aug 2020 11.18 PM
builxejc / builxejc
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF