phannh Posted August 25, 2017 Share Posted August 25, 2017 Hi all, I'm going to develope a tokenisation gateway module. Can you tell me _storeremote function will be called before or after _caputre function. In _storeremote function, do i need to update gatewayid (token) to table tblclient manually or i just need return something like this return array( "status" => "success", "gatewayid" => $results["token"], "rawdata" => $results, ); I have these functions in my gateway module file: function merchantgateway_MetaData() { } function merchantgateway_config() { } function merchantgateway_storeremote($params) { } function merchantgateway_capture($params) { } That's enough or may i misses something ? Finally, how to debug _remote and _capture function, i haved tried to log some variables inside both functions, but only variables in _capture function were logged. Thank you. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.