ip.tpl
7.02 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php echo $header; ?><?php echo $column_left; ?>
<div id="content">
<div class="page-header">
<div class="container-fluid">
<div class="pull-right">
<button class="btn btn-primary" data-toggle="tooltip" form="form-google-base" title="<?php echo $button_save; ?>" type="submit"><i class="fa fa-save"></i></button>
<a class="btn btn-default" data-toggle="tooltip" href="<?php echo $cancel; ?>" title="<?php echo $button_cancel; ?>"><i class="fa fa-reply"></i></a></div>
<h1><?php echo $heading_title; ?></h1>
<ul class="breadcrumb">
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
<?php } ?>
</ul>
</div>
</div>
<div class="container-fluid">
<?php if ($error_warning) { ?>
<div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> <?php echo $error_warning; ?>
<button class="close" data-dismiss="alert" type="button">×</button>
</div>
<?php } ?>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-pencil"></i> <?php echo $text_edit; ?></h3>
</div>
<div class="panel-body">
<form action="<?php echo $action; ?>" class="form-horizontal" enctype="multipart/form-data" id="form-google-base" method="post">
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tab-general"><?php echo $tab_general; ?></a></li>
<li><a data-toggle="tab" href="#tab-ip"><?php echo $tab_ip; ?></a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab-general">
<div class="form-group">
<label class="col-sm-2 control-label" for="input-order-status"><span data-toggle="tooltip" title="<?php echo $help_order_status; ?>"><?php echo $entry_order_status; ?></span></label>
<div class="col-sm-10">
<select class="form-control" id="input-order-status" name="ip_order_status_id">
<?php foreach ($order_statuses as $order_status) { ?>
<?php if ($order_status['order_status_id'] == $ip_order_status_id) { ?>
<option selected="selected" value="<?php echo $order_status['order_status_id']; ?>"><?php echo $order_status['name']; ?></option>
<?php } else { ?>
<option value="<?php echo $order_status['order_status_id']; ?>"><?php echo $order_status['name']; ?></option>
<?php } ?>
<?php } ?>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-status"> <?php echo $entry_status; ?> </label>
<div class="col-sm-10">
<select class="form-control" id="input-status" name="ip_status">
<?php if ($ip_status) { ?>
<option selected="selected" value="1"> <?php echo $text_enabled; ?> </option>
<option value="0"> <?php echo $text_disabled; ?> </option>
<?php } else { ?>
<option value="1"> <?php echo $text_enabled; ?> </option>
<option selected="selected" value="0"> <?php echo $text_disabled; ?> </option>
<?php } ?>
</select>
</div>
</div>
</div>
<div class="tab-pane" id="tab-ip">
<fieldset>
<legend> <?php echo $text_ip_add; ?> </legend>
<div class="form-group required">
<label class="col-sm-2 control-label" for="input-ip"> <?php echo $entry_ip; ?> </label>
<div class="col-sm-10">
<div class="input-group">
<input class="form-control" id="input-ip" placeholder="<?php echo $entry_ip; ?>" type="text" value=""/>
<span class="input-group-btn">
<button class="btn btn-primary" data-loading-text="<?php echo $text_loading; ?>" id="button-ip-add" type="button"> <?php echo $button_ip_add; ?> </button>
</span> </div>
</div>
</div>
</fieldset>
<br/>
<fieldset>
<legend> <?php echo $text_ip_list; ?> </legend>
<div id="ip"></div>
</fieldset>
</div>
</div>
</div>
</form>
</div>
</div>
<script type="text/javascript"><!--
$('#ip').delegate('.pagination a', 'click', function(e) {
e.preventDefault();
$('#ip').load(this.href);
});
$('#ip').load('index.php?route=fraud/ip/ip&token=<?php echo $token; ?>');
$('#button-ip-add').on('click', function() {
$.ajax({
url: 'index.php?route=fraud/ip/addip&token=<?php echo $token; ?>',
type: 'post',
dataType: 'json',
data: 'ip=' + encodeURIComponent($('#input-ip').val()),
beforeSend: function() {
$('#button-ip-add').button('loading');
},
complete: function() {
$('#button-ip-add').button('reset');
},
success: function(json) {
$('.alert').remove();
if (json['error']) {
$('#content > .container-fluid').prepend('<div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> ' + json['error'] + ' <button type="button" class="close" data-dismiss="alert">×</button></div>');
}
if (json['success']) {
$('#content > .container-fluid').prepend('<div class="alert alert-success"><i class="fa fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="close" data-dismiss="alert">×</button></div>');
$('#ip').load('index.php?route=fraud/ip/ip&token=<?php echo $token; ?>');
$('#input-ip').val('');
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
});
$('#ip').delegate('button', 'click', function() {
var element = this;
$.ajax({
url: 'index.php?route=fraud/ip/removeip&token=<?php echo $token; ?>',
type: 'post',
dataType: 'json',
data: 'ip=' + encodeURIComponent($(element).val()),
beforeSend: function() {
$(element).button('loading');
},
complete: function() {
$(element).button('reset');
},
success: function(json) {
$('.alert').remove();
if (json['error']) {
$('#content > .container-fluid').prepend('<div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> ' + json['error'] + ' <button type="button" class="close" data-dismiss="alert">×</button></div>');
}
if (json['success']) {
$('#content > .container-fluid').prepend('<div class="alert alert-success"><i class="fa fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="close" data-dismiss="alert">×</button></div>');
$('#ip').load('index.php?route=fraud/ip/ip&token=<?php echo $token; ?>');
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
});
//--></script>
</div>
<?php echo $footer; ?>