Skip to content

Instantly share code, notes, and snippets.

@tribulant
Last active August 29, 2015 14:04
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 tribulant/a6ebceb50f93f51e7af1 to your computer and use it in GitHub Desktop.
Save tribulant/a6ebceb50f93f51e7af1 to your computer and use it in GitHub Desktop.
Checkout: Action - checkout_admin_extensions_settings_saved example
<?php
function extensions_settings_saved($data = null) {
// Do something with the $_POST data as needed
// print_r($data);
}
add_action('checkout_admin_extensions_settings_saved', 'extensions_settings_saved', 10, 1);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment