gform_card_security_code_<rgget>
The Gravity Forms gform card security code rgget hook.
Description
Parameters (2)
- 0. $esc_html
- The esc html.
- 1. $rgget
- The rgget.
Usage
- To run the hook, copy the example below.
- $esc_html = apply_filters( 'gform_card_security_code_{$rgget}', $esc_html, $rgget );
- if ( !empty( $esc_html ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the gform_card_security_code_<rgget> callback
- function filter_gform_card_security_code_rgget( $esc_html, $rgget ) {
- // make filter magic happen here...
- return $esc_html;
- };
- // add the filter
- add_filter( "gform_card_security_code_{$rgget}", 'filter_gform_card_security_code_rgget', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( "gform_card_security_code_{$rgget}", 'filter_gform_card_security_code_rgget', 10, 2 );
Defined (1)
The filter is defined in the following location(s).
- /js.php
- ccSecruityCode = new Input(field.id + ".3", <?php echo json_encode( gf_apply_filters( array( 'gform_card_security_code', rgget( 'id' ) ), esc_html__( 'Security Code', 'gravityforms' ), rgget( 'id' ) ) ); ?>);