-
Notifications
You must be signed in to change notification settings - Fork 0
/
accounts.php
223 lines (140 loc) · 4.95 KB
/
accounts.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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<?php
include("header.php");
if ( $_GET["do"] == "new" ) {
include("php/inc_create_acc.php");
exit();
include("footer.php");
}
// This page lists all acounts and their respective balances
if ( $_GET["msg"] == "success" ) {
echo "
<div class='alert alert-success'>
<strong>Success!</strong> New account has been added.
</div>";
}
if ( $_GET["msg"] == "delete" ) {
echo "
<div class='alert alert-success'>
<strong>Success!</strong> Account has been deleted.
</div>";
}
if ( $_GET["msg"] == "fail" ) {
echo "
<div class='alert alert-danger'>
<strong>Error!</strong> New account could not be added.
</div>";
}
?>
<table id='accounts' class='hover' width='100%' cellspacing='0' lass="display nowrap">
<thead>
<tr>
<th data-priority="1">Account Name</th>
<th>Comment</th>
<th data-priority="2">Balance</th>
</tr>
</thead>
<tbody>
<?php
// Load accounts
if ( $_SESSION["account_rebuild_cache"] == 0 OR $_SESSION["account_rebuild_cache"] == FALSE) {
// Load page using the cache
include("php/inc_load_account_sql.php");
} else {
// Otherwise load the accounts using
// a SQL query
include("php/inc_load_account_cache.php");
}
?>
</tbody>
</table>
<div class="container">
<div class="row">
<div class="col-sm">
<p style="font-size: 20px;">Total Balance: <span id = "GetTotalID"><?php echo $_SESSION["SumTotalAccounts"]; ?></span></p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#createAccount">
<i class="icofont-plus"></i> Create account
</button>
<button id = "CopyBtn" type="button" class="btn btn-secondary"><i class="icofont-ui-copy"></i> Copy balance</button>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="createAccount" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Create new fund</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="alert alert-danger" id = "errorMsg" style = "display:none;">
<strong>Error!</strong> Account could not be created.
<p class="errorMessage"></p>
</div>
<form id = "CreateAccForm">
<div class="form-group row">
<label for="accName" class="col-4 col-form-label">Pot name</label>
<div class="col-8">
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text">
<i class="icofont-money-bag"></i>
</div>
</div>
<input id="accName" name="accName" type="text" class="form-control" required="required">
</div>
</div>
</div>
<div class="form-group row">
<label for="accComment" class="col-4 col-form-label">Description</label>
<div class="col-8">
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text">
<i class="icofont-comment"></i>
</div>
</div>
<input id="accComment" name="accComment" type="text" class="form-control">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<!--<button type="button" class="btn btn-primary">Create</button>-->
<input type = "submit" class = "btn btn-primary" value = "Create">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</form>
</div>
</div>
</div>
</div>
<script src="js/create_account.js"></script>
<script>
$(document).ready(function() {
$('#accounts').DataTable( {
'order': [[ 2, 'desc' ]],
responsive: true,
columnDefs: [
{ responsivePriority: 1, targets: 0 },
{ responsivePriority: 2, targets: -1 }
]
} );
$('#createAccount').on('shown.bs.modal', function () {
$('#myInput').trigger('focus')
})
} );
<!-- Source: https://www.codehaven.co.uk/jquery/jquery-tricks/copy-text-from-a-div-to-clipboard-cut-and-paste/
-->
$(document).on('click', '#CopyBtn', function() {
var range = document.createRange();
range.selectNode(document.getElementById("GetTotalID"));
window.getSelection().removeAllRanges(); // clear current selection
window.getSelection().addRange(range); // to select text
document.execCommand("copy");
window.getSelection().removeAllRanges();// to deselect
});
</script>
<?php include("footer.php"); ?>