Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Last active May 24, 2016 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjohnson/dc3fb7762a5a37896069f49fe161c09e to your computer and use it in GitHub Desktop.
Save kjohnson/dc3fb7762a5a37896069f49fe161c09e to your computer and use it in GitHub Desktop.
<?php
add_filter( 'ninja_forms_upgrade_action_my_addon', 'upgrade_my_addon_settings' );
function upgrade_my_addon_settings( $action_settings ){
$old_setting = $action_setting[ 'old_setting' ];
// Modify $old_setting
$action_settings[ 'new_setting' ] = $old_setting;
return $action_settings;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment