hedera-web/rest/tpv/confirm-post.php

18 lines
249 B
PHP
Raw Normal View History

2016-07-22 20:00:27 +00:00
<?php
2016-08-30 07:43:47 +00:00
require_once ('vn/web/rest-request.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
{
function run ()
{
2016-08-22 10:41:05 +00:00
Tpv::confirm ($db, $_POST);
2016-07-22 20:00:27 +00:00
}
}
?>