This repository has been archived by the owner on Jan 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
customers_view.php
191 lines (176 loc) · 6.68 KB
/
customers_view.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
<?php
// This script and data application were generated by AppGini 5.42
// Download AppGini for free from http://bigprof.com/appgini/download/
$currDir=dirname(__FILE__);
include("$currDir/defaultLang.php");
include("$currDir/language.php");
include("$currDir/lib.php");
@include("$currDir/hooks/customers.php");
include("$currDir/customers_dml.php");
// mm: can the current member access this page?
$perm=getTablePermissions('customers');
if(!$perm[0]){
echo error_message($Translation['tableAccessDenied'], false);
echo '<script>setTimeout("window.location=\'index.php?signOut=1\'", 2000);</script>';
exit;
}
$x = new DataList;
$x->TableName = "customers";
// Fields that can be displayed in the table view
$x->QueryFieldsTV=array(
"`customers`.`CustomerID`" => "CustomerID",
"`customers`.`CompanyName`" => "CompanyName",
"`customers`.`ContactName`" => "ContactName",
"`customers`.`ContactTitle`" => "ContactTitle",
"`customers`.`Address`" => "Address",
"`customers`.`City`" => "City",
"`customers`.`Region`" => "Region",
"`customers`.`PostalCode`" => "PostalCode",
"`customers`.`Country`" => "Country",
"`customers`.`Phone`" => "Phone",
"`customers`.`Fax`" => "Fax"
);
// mapping incoming sort by requests to actual query fields
$x->SortFields = array(
1 => 1,
2 => 2,
3 => 3,
4 => 4,
5 => 5,
6 => 6,
7 => 7,
8 => 8,
9 => 9,
10 => 10,
11 => 11
);
// Fields that can be displayed in the csv file
$x->QueryFieldsCSV=array(
"`customers`.`CustomerID`" => "CustomerID",
"`customers`.`CompanyName`" => "CompanyName",
"`customers`.`ContactName`" => "ContactName",
"`customers`.`ContactTitle`" => "ContactTitle",
"`customers`.`Address`" => "Address",
"`customers`.`City`" => "City",
"`customers`.`Region`" => "Region",
"`customers`.`PostalCode`" => "PostalCode",
"`customers`.`Country`" => "Country",
"`customers`.`Phone`" => "Phone",
"`customers`.`Fax`" => "Fax"
);
// Fields that can be filtered
$x->QueryFieldsFilters=array(
"`customers`.`CustomerID`" => "Customer ID",
"`customers`.`CompanyName`" => "Company Name",
"`customers`.`ContactName`" => "Contact Name",
"`customers`.`ContactTitle`" => "Contact Title",
"`customers`.`Address`" => "Address",
"`customers`.`City`" => "City",
"`customers`.`Region`" => "Region",
"`customers`.`PostalCode`" => "Postal Code",
"`customers`.`Country`" => "Country",
"`customers`.`Phone`" => "Phone",
"`customers`.`Fax`" => "Fax"
);
// Fields that can be quick searched
$x->QueryFieldsQS=array(
"`customers`.`CustomerID`" => "CustomerID",
"`customers`.`CompanyName`" => "CompanyName",
"`customers`.`ContactName`" => "ContactName",
"`customers`.`ContactTitle`" => "ContactTitle",
"`customers`.`Address`" => "Address",
"`customers`.`City`" => "City",
"`customers`.`Region`" => "Region",
"`customers`.`PostalCode`" => "PostalCode",
"`customers`.`Country`" => "Country",
"`customers`.`Phone`" => "Phone",
"`customers`.`Fax`" => "Fax"
);
// Lookup fields that can be used as filterers
$x->filterers = array();
$x->QueryFrom="`customers` ";
$x->QueryWhere='';
$x->QueryOrder='';
$x->AllowSelection = 1;
$x->HideTableView = ($perm[2]==0 ? 1 : 0);
$x->AllowDelete = $perm[4];
$x->AllowMassDelete = false;
$x->AllowInsert = $perm[1];
$x->AllowUpdate = $perm[3];
$x->SeparateDV = 1;
$x->AllowDeleteOfParents = 0;
$x->AllowFilters = 1;
$x->AllowSavingFilters = 1;
$x->AllowSorting = 1;
$x->AllowNavigation = 1;
$x->AllowPrinting = 1;
$x->AllowCSV = 0;
$x->RecordsPerPage = 10;
$x->QuickSearch = 1;
$x->QuickSearchText = $Translation["quick search"];
$x->ScriptFileName = "customers_view.php";
$x->RedirectAfterInsert = "customers_view.php";
$x->TableTitle = "Customers";
$x->TableIcon = "resources/table_icons/account_balances.png";
$x->PrimaryKey = "`customers`.`CustomerID`";
$x->DefaultSortField = '2';
$x->DefaultSortDirection = 'asc';
$x->ColWidth = array( 90, 250, 200, 150, 100, 50, 120);
$x->ColCaption = array("Customer ID", "Company Name", "Contact Name", "Address", "City", "Region", "Country");
$x->ColFieldName = array('CustomerID', 'CompanyName', 'ContactName', 'Address', 'City', 'Region', 'Country');
$x->ColNumber = array(1, 2, 3, 5, 6, 7, 9);
$x->Template = 'templates/customers_templateTV.html';
$x->SelectedTemplate = 'templates/customers_templateTVS.html';
$x->ShowTableHeader = 1;
$x->ShowRecordSlots = 0;
$x->HighlightColor = '#FFF0C2';
// mm: build the query based on current member's permissions
$DisplayRecords = $_REQUEST['DisplayRecords'];
if(!in_array($DisplayRecords, array('user', 'group'))){ $DisplayRecords = 'all'; }
if($perm[2]==1 || ($perm[2]>1 && $DisplayRecords=='user' && !$_REQUEST['NoFilter_x'])){ // view owner only
$x->QueryFrom.=', membership_userrecords';
$x->QueryWhere="where `customers`.`CustomerID`=membership_userrecords.pkValue and membership_userrecords.tableName='customers' and lcase(membership_userrecords.memberID)='".getLoggedMemberID()."'";
}elseif($perm[2]==2 || ($perm[2]>2 && $DisplayRecords=='group' && !$_REQUEST['NoFilter_x'])){ // view group only
$x->QueryFrom.=', membership_userrecords';
$x->QueryWhere="where `customers`.`CustomerID`=membership_userrecords.pkValue and membership_userrecords.tableName='customers' and membership_userrecords.groupID='".getLoggedGroupID()."'";
}elseif($perm[2]==3){ // view all
// no further action
}elseif($perm[2]==0){ // view none
$x->QueryFields = array("Not enough permissions" => "NEP");
$x->QueryFrom = '`customers`';
$x->QueryWhere = '';
$x->DefaultSortField = '';
}
// hook: customers_init
$render=TRUE;
if(function_exists('customers_init')){
$args=array();
$render=customers_init($x, getMemberInfo(), $args);
}
if($render) $x->Render();
// hook: customers_header
$headerCode='';
if(function_exists('customers_header')){
$args=array();
$headerCode=customers_header($x->ContentType, getMemberInfo(), $args);
}
if(!$headerCode){
include_once("$currDir/header.php");
}else{
ob_start(); include_once("$currDir/header.php"); $dHeader=ob_get_contents(); ob_end_clean();
echo str_replace('<%%HEADER%%>', $dHeader, $headerCode);
}
echo $x->HTML;
// hook: customers_footer
$footerCode='';
if(function_exists('customers_footer')){
$args=array();
$footerCode=customers_footer($x->ContentType, getMemberInfo(), $args);
}
if(!$footerCode){
include_once("$currDir/footer.php");
}else{
ob_start(); include_once("$currDir/footer.php"); $dFooter=ob_get_contents(); ob_end_clean();
echo str_replace('<%%FOOTER%%>', $dFooter, $footerCode);
}
?>