Skip to content

Instantly share code, notes, and snippets.

@nukturnal
Last active October 12, 2015 12:58
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 nukturnal/4030123 to your computer and use it in GitHub Desktop.
Save nukturnal/4030123 to your computer and use it in GitHub Desktop.
MPower PHP Checkout Invoice Return URL
<?php
// Globally setting return URL, the piece of code below
// should be included with the checkout shop setup code
MPower_Checkout_Store::setReturnUrl("http://www.myawesomeshop.com/confirm.php");
// Setting the return URL on an invoice instance.
// This will overwrite any global settings for return URL
$invoice->setReturnUrl("http://www.myawesomeshop.com/confirm.php");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment