0
1
Fork 0
hedera-web-mindshore/rest/tpv/confirm-post.php

16 lines
207 B
PHP
Raw Normal View History

2016-07-22 20:00:27 +00:00
<?php
2016-08-22 10:41:05 +00:00
require_once (__DIR__.'/tpv.php');
2016-07-22 20:00:27 +00:00
/**
* Gets transaction confirmation from HTTP POST.
**/
2016-08-30 07:43:47 +00:00
class ConfirmPost extends Vn\Web\RestRequest
2016-07-22 20:00:27 +00:00
{
2016-09-23 22:47:34 +00:00
function run ($db)
2016-07-22 20:00:27 +00:00
{
2016-08-22 10:41:05 +00:00
Tpv::confirm ($db, $_POST);
2016-07-22 20:00:27 +00:00
}
}