-
Notifications
You must be signed in to change notification settings - Fork 86
/
TokenDelete.php
80 lines (68 loc) · 2.55 KB
/
TokenDelete.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
/**
* OpenPayU Examples
*
* @copyright Copyright (c)
* http://www.payu.com
* http://developers.payu.com
*/
require_once realpath(dirname(__FILE__)) . '/../../../lib/openpayu.php';
require_once realpath(dirname(__FILE__)) . '/../../config.php';
if (isset($_POST['token'])) {
$token = trim($_POST['token']);
}
?>
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Token</title>
<link rel="stylesheet" href="../../layout/css/bootstrap.min.css">
<link rel="stylesheet" href="../../layout/css/style.css">
<script type="text/javascript" src="../../layout/js/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Token</h1>
</div>
<div id="message"></div>
<div id="unregisteredCardData">
<?php
if (!empty($token)) {
try {
$tokenDelete = OpenPayU_Token::delete($token);
$status_desc = OpenPayU_Util::statusDesc($tokenDelete->getStatus());
echo '<div class="alert alert-success">SUCCESS</div>';
} catch (OpenPayU_Exception $e) {
echo '<pre>';
echo 'Error code: '.$e->getCode();
echo '<br>';
echo 'Error message: '.$e->getMessage();
echo '<br>';
echo '</pre>';
}
} else {
?>
<form action="" method="post" class="form-horizontal">
<div class="control-group">
<label class="control-label" for="token">Token</label>
<div class="controls">
<input class="span5" name="token" id="token" type="text" value=""/>
</div>
</div>
<div class="control-group">
<label class="control-label" for="pay-button"></label>
<div id="msg"></div>
<div class="controls">
<button class="btn btn-success" id="pay-button" type="submit">Delete token</button>
</div>
</div>
</form>
<?php
}
?>
</div>
</div>
</body>
</html>