woocommerce_sequra_before_load

Hook Action

Allow plugins to run when the class is loaded.

Description

Allow executing custom code just before seQura payment gateway is loaded.

ParameterTypeDescription
$instanceSeQura\WC\Services\Payment\Sequra_Payment_GatewayPayment gateway instance

Changelog

VersionDescription
2.0.0Introduced

Usage Example

add_action('woocommerce_sequra_before_load', function($instance){
  // Your custom code here...
});