forked from drajathasan/visitorwebcounter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVisitorCouterWebReport.php
144 lines (118 loc) · 3.46 KB
/
VisitorCouterWebReport.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
<?php
/**
* @author Drajat Hasan
* @email drajathasan20@gmail.com
* @create date 2021-11-01 09:36:55
* @modify date 2021-11-01 09:36:55
* @desc [description]
*/
class VisitorCouterWebReport extends report_datagrid
{
private string $tableSpec;
private string $tableColumn;
private string $Datagrid;
private string $HeaderInfo = '';
private object $dbs;
private string $orderBy;
private string $groupBy;
private string $criteria = '';
public bool $concatCriteria = true;
public function __construct(mysqli $dbs)
{
parent::__construct();
$this->dbs = $dbs;
}
public function setTableSpec(string $Table, array $Join = [])
{
// set table
$this->tableSpec = $Table . ' ';
foreach ($Join as $attr) {
$this->tableSpec .= ' ' . $attr[0] . ' JOIN ' . $attr[1] . ' ON ' . $attr[2];
}
return $this;
}
public function setColumn($Columns, $withAJAX = false)
{
$tableColumn = [];
foreach ($Columns as $Column => $Label) {
$tableColumn[] = $Column . " AS '$Label'";
}
if (!$withAJAX)
{
$this->tableColumn = implode(', ', $tableColumn);
$this->setSQLColumn($this->tableColumn);
}
else
{
$this->tableColumn = implode(', ', $tableColumn);
call_user_func_array([$this,'setSQLColumn'], $tableColumn);
}
return $this;
}
public function setCriteria(string $criteria)
{
if ($this->concatCriteria)
{
$this->criteria .= $criteria;
}
else
{
$this->criteria = $criteria;
}
return $this;
}
public function getSQL()
{
return 'SELECT ' . $this->tableColumn . ' FROM ' . $this->tableSpec . ' ' . $this->sql_criteria . $this->sql_group_by;;
}
public function orderBy(string $OrderBy = '')
{
$this->orderBy = $OrderBy;
return $this;
}
public function groupBy($GroupBy = '')
{
$this->groupBy = $GroupBy;
return $this;
}
public function create(int $numPerPage = 20)
{
if (!empty($this->orderBy)) $this->setSQLorder($this->orderBy);
if (!empty($this->groupBy)) $this->sql_group_by = $this->groupBy;
if (!empty($this->criteria)) $this->setSQLCriteria($this->criteria);
$this->Datagrid = $this->createDataGrid($this->dbs, $this->tableSpec, $numPerPage);
return $this;
}
public function createXls(string $FileName, array $Header = [])
{
// reset data
unset($_SESSION['xlsdata']);
// set query
$_SESSION['xlsquery'] = 'SELECT ' . $this->tableColumn . ' FROM ' . $this->tableSpec . ' ' . $this->sql_criteria . $this->sql_group_by;
// Header
if (count($Header))
{
$_SESSION['xlsheader'] = $Header;
}
// File name
$_SESSION['tblout'] = $FileName;
return $this;
}
public function createHeaderInfo($Data)
{
$HTML = '<dl class="row">';
foreach ($Data as $Label => $Value) {
$HTML .= <<<HTML
<dt class="col-sm-2">{$Label}</dt>
<dd class="col-sm-10">{$Value}</dd>
HTML;
}
$HTML .= '</dl>';
$this->HeaderInfo = $HTML;
return $this;
}
public function result()
{
return $this->HeaderInfo . $this->Datagrid;
}
}