Created
May 20, 2015 18:47
-
-
Save kjohnson/65d1810c98dd461e9f94 to your computer and use it in GitHub Desktop.
Ninja Forms Upgrade Handler Registration Hook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'nf_upgrade_handler_register', 'add_nf_my_upgrade', 10, 1 ); | |
| function add_nf_my_upgrade( $upgrades ) { | |
| $upgrades[] = new NF_Upgrade_My_UPgrade(); | |
| return $upgrades; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment