3
votes
1answer
4k views

Get current orderId in magento payment module during checkout

I am implementing my own payment module for Magento, where I implemented getCheckoutRedirectUrl() method in my payment model. class My_Module_Model_Payment extends Mage_Payment_Model_Method_Abstract ...
0
votes
2answers
1k views

magento payment gateway custom method return

I am doing a magento gateway for paysolution for 1.4 and 1.5 and i am stack in the return from the bank. It is my firs module an I confusing about the way MVC works. The admin configuration part ...
2
votes
3answers
2k views

magento redirect checkout payment to a 3rd party gateway

I would like to be able to allow users to select a certain option on checkout, and then they will be redirected to the bank page where they use their credit info to pay, then redirected back to ...
23
votes
2answers
7k views

Magento Payment flow

I am working on implementing new payment module for Magento and want to understand the core concept behind this logic. I know I have to extend from Mage_Payment_Model_Method_Abstract or any of its ...