-
Notifications
You must be signed in to change notification settings - Fork 87
/
Get.php
71 lines (64 loc) · 1.96 KB
/
Get.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
<?php
/**
* OpenPayU Examples
*
* @copyright Copyright (c) PayU
* 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['publicShopId'])) {
$publicShopId = trim($_POST['publicShopId']);
}
?>
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Retrieving shop data</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>Retrieving shop data</h1>
</div>
<?php
if (!empty($publicShopId)) {
try {
$shop = OpenPayU_Shop::get($publicShopId);
echo '<pre>'.$shop.'</pre>';
} 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="publicShopId">Public Shop Id</label>
<div class="controls">
<input class="span5" name="publicShopId" id="publicShopId" 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">Get shop</button>
</div>
</div>
</form>
<?php
}
?>
</div>
</body>
</html>