-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpagination_extended.php
More file actions
333 lines (283 loc) · 9.15 KB
/
pagination_extended.php
File metadata and controls
333 lines (283 loc) · 9.15 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
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
<?php
include("pagination.php");
/*
Author : Shishir Raven.
Website : shishirraven.com
Purpose : To extend the current pagination class to include new facilities such as follows.
Created on : September 15, 2012
Last Modified on : September 15, 1012
1) Hover filters.
2) Records Searches.
3) Group Filters.
$config['query'] = "SELECT * FROM issue_comments WHERE id = '".$_REQUEST["issue_id"]."'";
$config['emable_field_search'] = "true";
$rec_page = new pagination_extended($config);
$row_array = $rec_page->get_array();
$rec_page->show_links()
*/
//print_r($_REQUEST);
class pagination_extended extends pagination
{
var $where_clause = "";
// CONSTRUCTOR
function __construct($params=array())
{
// exit;
parent::__construct($params);
$this->building_where_clause();
//$this->get_current_page();
$this->query_limit();
}
function column_search($table_field_name,$label)
{
$data = $_REQUEST;
// REMOVING THE PREVIOUS sort_by COLUMN.
if(isset($data["pag_search_".$table_field_name]))
{
unset($data["pag_search_".$table_field_name]);
}
echo $label;
?>
<input type="" class="search_box" name="<?php echo "pag_search_".$table_field_name;?>" id="<?php echo "pag_search_".$table_field_name;?>" value="<?php
if(isset($_REQUEST["pag_search_".$table_field_name]))
{
echo $_REQUEST["pag_search_".$table_field_name];
}
?>">
<input type="button" value="Go" onClick='location.replace("<?php echo $_SERVER['PHP_SELF']."?".http_build_query($data); ?>&<?php echo "pag_search_".$table_field_name;?>="+$("#<?php echo "pag_search_".$table_field_name;?>").val() )'/>
<input type="button" value="Clear" onClick='location.replace("<?php echo $_SERVER['PHP_SELF']."?".http_build_query($data); ?>")'/>
<?php
}
function create_filter_link($link, $label)
{
echo ' <a href="'.$link.'"><div id="some_id" class="btn small " style="margin:2px;float:left;">'.$label.'</div></a>';
}
function create_filter_link_by_value($tablename, $columnname, $value, $label)
{
$data = $_REQUEST;
if(isset($data["pag_search_".$tablename."--".$columnname]))
{
unset($data["pag_search_".$tablename."--".$columnname]);
}
$link = $_SERVER['PHP_SELF']."?".http_build_query($data)."&"."pag_search_".$tablename."--".$columnname."=".$value;
echo ' <a href="'.$link.'"><div id="some_id" class="btn small " style="margin:2px;float:left;">'.$label.'</div></a>';
}
function show_distinct_filter($tablename,$columname,$alias="")
{
$data = $_REQUEST;
if(isset($data["pag_search_".$tablename."--".$columname]))
{
unset($data["pag_search_".$tablename."--".$columname]);
}
$myresult = mysql_query("select distinct($columname) from $tablename") or die(mysql_error());
if($alias=="")
{
$searchitem = $tablename."--".$columname;
}
else
{
$searchitem = $alias."--".$columname;
}
while($distinct_row = mysql_fetch_array($myresult))
{
$this->create_filter_link($_SERVER['PHP_SELF']."?".http_build_query($data)."&"."pag_search_".$searchitem."=".$distinct_row[0], $distinct_row[0]);
}
}
function building_where_clause()
{
// Finding out all the get values that has starting with the string 'pag_search_'
$data = $_REQUEST;
/* echo "<pre>";
print_r($_REQUEST);
exit; */
$where = array();
$have = array();
/* echo '<pre>';
print_r($_REQUEST);
exit; */
// Looping the data starts here,
foreach($data as $data_key => $data_value)
{
// checking the matching values.
if(strstr($data_key, 'pag_search_'))
{
// Starting to make the search array starts here.
if(strstr($data_key, '--'))
{
$data_key= str_replace('--','.', $data_key);
}
if($data_value=='active')
{
$where[] = $data_key. " = '". $data_value."'";
array($data_key=>$data_value);
}
else
if($data_value!="")
{
$where[] = $data_key. " like '%". $data_value."%'";
}
}
//LESSER THAN
if(strstr($data_key, 'pag_lesser_search_'))
{
if(strstr($data_key, '--'))
{
$data_key= str_replace('--','.', $data_key);
}
if($data_value!="")
{
$where[] = $data_key. " <=". $data_value;
}
}
//GREATER THAN
if(strstr($data_key, 'pag_greater_search_'))
{
if(strstr($data_key, '--'))
{
$data_key= str_replace('--','.', $data_key);
}
if($data_value!="")
{
$where[] = $data_key. " >=". $data_value;
}
}
if(strstr($data_key, 'pag_have_search_'))
{
list($junction_table, $junc_first, $junc_sec, $first_table, $first_table_field, $sec_table, $sec_table_field) = explode("--", $data_key);
//echo $junction_table.','.$junc_first.','.$junc_sec.','.$first_table.','.$first_table_field.','.$sec_table.','.$sec_table_field;
if($data_value!="")
{
$data_value = implode(',',$data_value);
$where[] = "$first_table.$first_table_field IN(select $junc_first from $junction_table where $junc_sec IN($data_value))";
}
// echo $data_key; exit;
// Starting to make the search array starts here.
if(strstr($data_key, '--'))
{
$data_key= str_replace('--','.', $data_key);
}
}
if(strstr($data_key, 'pag_exact_search_'))
{
// Starting to make the search array starts here.
if(strstr($data_key, '--'))
{
$data_key= str_replace('--','.', $data_key);
}
if($data_value!="")
{
$where[] = $data_key. " = '".$data_value."'";
}
}
if(strstr($data_key, 'pag_fulltext_search_'))
{
// Starting to make the search array starts here.
if(strstr($data_key, '--'))
{
$data_key= str_replace('--','.', $data_key);
$data_key= str_replace('||',',', $data_key);
$data_key_arr = explode('&&', $data_key);
}
if($data_value!="")
{
$value = "+".str_replace(' ',' +',$data_value);
$full_text_query = array();
foreach($data_key_arr as $data_key)
{
$full_text_query[] .= "MATCH ($data_key) AGAINST ('$value' IN BOOLEAN MODE)";
}
$where[] = implode(' OR ',$full_text_query);
}
}
if(strstr($data_key, 'date_pg_search'))
{
if($data_value!="")
{
// Starting to make the search array starts here.
if(strstr($data_key, '--'))
{
$data_key= str_replace('--','.', $data_key);
}
$myarray = explode(' to ',$data_value);
$where[] = " (".$data_key. " between '".$myarray[0] ."' and '".$myarray[1]."') ";
}
}
}
// Checking to see if the where clause has more than one value.
if(count($where))
{
$additional_statements = implode(' and ',$where);
if(strstr($this->query, 'where') || strstr($this->query, 'WHERE') || strstr($this->query, 'Where'))
{
$joinby = " and " ;
}
else
{
$joinby = " where ";
}
$this->where_clause = $joinby.$additional_statements;
$before=$this->query;
$after="";
if(strstr(strtolower($this->query), 'group by'))
{
list($before, $after) = explode('group by', strtolower($this->query), 2);
$after=" group by".$after;
}
$this->query = $before.str_replace('pag_search_','', $joinby.$additional_statements).$after;
$this->query = str_replace('date_pg_search_','', $this->query );
$this->query = str_replace('pag_exact_search_','', $this->query );
$this->query = str_replace('pag_fulltext_search_','', $this->query );
$this->query = str_replace('pag_have_search_','', $this->query );
$this->query = str_replace('pag_lesser_search_','', $this->query );
$this->query = str_replace('pag_greater_search_','', $this->query );
//echo $this->query; exit;
// exit;
}
// Creating the where array of the pag_search variable.
if(count($have))
{
$additional_statements = implode(' and ',$have);
if(strstr($this->query, 'having'))
{
$joinby = " and " ;
}
else
{
$joinby = " having ";
}
$before=$this->query;
$after="";
if(strstr(strtolower($this->query), 'group by'))
{
list($before, $after) = explode('group by', strtolower($this->query), 2);
$after="group by".$after;
}
$this->query = $this->query.$joinby.$additional_statements;
$this->query = str_replace('pag_have_search_','', $this->query );
//echo $this->query; exit;
// exit;
}
}
// Creating the where array of the pag_search variable.
function scafolding()
{
// Function responsible for displaying the Array into a Table format.
$data_array = $this->get_array();
echo "<table border='1'>";
foreach($data_array as $datarow)
{
echo "<tr>";
foreach($datarow as $datacolumn=>$datavalue)
{
echo "<td>".$datavalue."</td>";
}
echo "</tr>";
}
echo "</table>";
}
function where_clause()
{
return $this->where_clause;
}
}// Class Ends here
?>