angelleye_before_fc_payment_fields
The PayPal for WooCommerce angelleye before fc payment fields hook.
Description
Parameters (1)
- 0. $instance (unknown)
- The
instance
.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'angelleye_before_fc_payment_fields', $instance );
- The following example is for adding a hook callback.
- // define the angelleye_before_fc_payment_fields callback
- function action_angelleye_before_fc_payment_fields( $instance ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'angelleye_before_fc_payment_fields', 'action_angelleye_before_fc_payment_fields', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'angelleye_before_fc_payment_fields', 'action_angelleye_before_fc_payment_fields', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /classes/wc-gateway-paypal-pro-payflow-angelleye.php
- do_action('angelleye_before_fc_payment_fields', $this);