forked from lirantal/daloradius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bill-payment-types-list.php
204 lines (167 loc) · 7.41 KB
/
bill-payment-types-list.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
<?php
/*
*********************************************************************************************************
* daloRADIUS - RADIUS Web Platform
* Copyright (C) 2007 - Liran Tal <[email protected]> All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*********************************************************************************************************
*
* Authors: Liran Tal <[email protected]>
* Filippo Lauria <[email protected]>
*
*********************************************************************************************************
*/
include("library/checklogin.php");
$operator = $_SESSION['operator_user'];
include('library/check_operator_perm.php');
include_once('library/config_read.php');
include_once("lang/main.php");
include("library/layout.php");
// init logging variables
$log = "visited page: ";
$logQuery = "performed query on page: ";
$logDebugSQL = "";
// set session's page variable
$_SESSION['PREV_LIST_PAGE'] = $_SERVER['REQUEST_URI'];
$cols = array(
"id" => t('all','ID'),
"paymentname" => t('all','PayTypeName'),
t('all','PayTypeNotes')
);
$colspan = count($cols);
$half_colspan = intval($colspan / 2);
$param_cols = array();
foreach ($cols as $k => $v) { if (!is_int($k)) { $param_cols[$k] = $v; } }
// whenever possible we use a whitelist approach
$orderBy = (array_key_exists('orderBy', $_GET) && isset($_GET['orderBy']) &&
in_array($_GET['orderBy'], array_keys($param_cols)))
? $_GET['orderBy'] : array_keys($param_cols)[0];
$orderType = (array_key_exists('orderType', $_GET) && isset($_GET['orderType']) &&
in_array(strtolower($_GET['orderType']), array( "desc", "asc" )))
? strtolower($_GET['orderType']) : "asc";
// print HTML prologue
$title = t('Intro','paymenttypeslist.php');
$help = t('helpPage','paymenttypeslist');
print_html_prologue($title, $langCode);
include("menu-bill-payments.php");
// start printing content
echo '<div id="contentnorightbar">';
print_title_and_help($title, $help);
include('library/opendb.php');
include('include/management/pages_common.php');
// we use this simplified query just to initialize $numrows
$sql = sprintf("SELECT COUNT(id) FROM %s", $configValues['CONFIG_DB_TBL_DALOPAYMENTTYPES']);
$res = $dbSocket->query($sql);
$numrows = $res->fetchrow()[0];
if ($numrows > 0) {
/* START - Related to pages_numbering.php */
// when $numrows is set, $maxPage is calculated inside this include file
include('include/management/pages_numbering.php'); // must be included after opendb because it needs to read
// the CONFIG_IFACE_TABLES_LISTING variable from the config file
// here we decide if page numbers should be shown
$drawNumberLinks = strtolower($configValues['CONFIG_IFACE_TABLES_LISTING_NUM']) == "yes" && $maxPage > 1;
/* END */
// we execute and log the actual query
$sql = sprintf("SELECT id, value AS paymentName, notes FROM %s", $configValues['CONFIG_DB_TBL_DALOPAYMENTTYPES']);
$sql .= sprintf(" ORDER BY %s %s LIMIT %s, %s", $orderBy, $orderType, $offset, $rowsPerPage);
$res = $dbSocket->query($sql);
$logDebugSQL .= "$sql;\n";
$per_page_numrows = $res->numRows();
// this can be passed as form attribute and
// printTableFormControls function parameter
$action = "bill-payment-types-del.php";
?>
<form name="listall" method="POST" action="<?= $action ?>">
<table border="0" class="table1">
<thead>
<?php
// page numbers are shown only if there is more than one page
if ($drawNumberLinks) {
echo '<tr style="background-color: white">';
printf('<td style="text-align: left" colspan="%s">go to page: ', $colspan);
setupNumbering($numrows, $rowsPerPage, $pageNum, $orderBy, $orderType);
echo '</td>' . '</tr>';
}
?>
<tr>
<th style="text-align: left" colspan="<?= $colspan ?>">
<?php
printTableFormControls('paymentname[]', $action);
?>
</th>
</tr>
<tr>
<?php
// second line of table header
printTableHead($cols, $orderBy, $orderType);
?>
</tr>
</thead>
<tbody>
<?php
$li_style = 'margin: 7px auto';
$count = 1;
while ($row = $res->fetchRow()) {
$rowlen = count($row);
// escape row elements
for ($i = 0; $i < $rowlen; $i++) {
$row[$i] = htmlspecialchars($row[$i], ENT_QUOTES, 'UTF-8');
}
list($id, $paymentName, $notes) = $row;
$tooltipText = '<ul style="list-style-type: none">'
. sprintf('<li style="%s"><a class="toolTip" href="bill-payment-types-edit.php?paymentname=%s">%s</a></li>',
$li_style, urlencode($paymentName), t('Tooltip','EditPayType'))
. sprintf('<li style="%s"><a class="toolTip" href="bill-payment-types-del.php?paymentname=%s">%s</a></li>',
$li_style, urlencode($paymentName), t('Tooltip','RemovePayType'))
. '</ul>';
$onclick = "javascript:return false;";
?>
<tr>
<td>
<input type="checkbox" name="paymentname[]" value="<?= $paymentName ?>" id="<?= "checkbox-$count" ?>">
<label for="<?= "checkbox-$count" ?>">
<a class="tablenovisit" href="#" onclick="<?= $onclick ?>" tooltipText='<?= $tooltipText ?>'>
<?= $id ?>
</a>
</label>
</td>
<td><?= $paymentName ?></td>
<td><?= $notes ?></td>
</tr>
<?php
$count++;
}
?>
</tbody>
<?php
// tfoot
$links = setupLinks_str($pageNum, $maxPage, $orderBy, $orderType);
printTableFoot($per_page_numrows, $numrows, $colspan, $drawNumberLinks, $links);
?>
</table>
<input name="csrf_token" type="hidden" value="<?= dalo_csrf_token() ?>">
</form>
<?php
} else {
$failureMsg = "Nothing to display";
include_once("include/management/actionMessages.php");
}
include('library/closedb.php');
include('include/config/logging.php');
$inline_extra_js = "
var tooltipObj = new DHTMLgoodies_formTooltip();
tooltipObj.setTooltipPosition('right');
tooltipObj.setPageBgColor('#EEEEEE');
tooltipObj.setTooltipCornerSize(15);
tooltipObj.initFormFieldTooltip()";
print_footer_and_html_epilogue($inline_extra_js);
?>