-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.php
313 lines (263 loc) · 8.99 KB
/
product.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
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
<?php include("securearea.php"); ?>
<?php
class Product extends Securearea
{
public $productname = "";
public $product = "";
function __construct()
{
parent::__construct();
$this->load->helper("url");
$this->load->library('session');
}
public function index()
{
$this->viewLatestProducts();
}
public function viewProduct($prod_name = "",$second = "",$prod_id = "")
{
// This is added because routes.php was not working
//This will transfer to the specified function if given
if(is_numeric($second))
{
$this->$prod_name($second);die;
}
$this->productname = removehyphens(urldecode($prod_name));
$this->product = $this->product_model->getProduct("","","AND product_name = '".$this->productname."'");
if($this->product)
{
$this->product = $this->product[0];
//$gfg = $this->product['product_id'];
$this->product["brand_details"] = $this->brandsList[$this->product['brands_id']];
$where = ' AND product_name != "'.$this->productname.'" AND (';
$is_first = TRUE;
$category_ids = $this->product['category_id'];
$this->product['categories'] = array();
foreach(explode(",",$this->product['category_id']) as $category_ids)
{
$storCat = $this->categoryData[$category_ids];
$this->product['categories'][$category_ids]["category_name"] = $storCat["category_name"];
$this->product['categories'][$category_ids]["category_id"] = $category_ids;
}
// echo "<pre>";print_r($this->product);die;
//load header
/* $this->loadHeader($this,"",removehyphens($prod_name)); */
$this->loadHeader($this,"",$this->product['product_title'],$this->product['product_deseo']);
//load sidebar
$this->loadSidebar($this);
//load middle content
$view["obj"] = $this;
$view["new"] = $this->get_avg_rating();
$view["count"] = $this->get_rev_count();
//$view["rev"] = $this->get_review_data();
//print_r($view['rev']);die;
//$view["test"] = $this->getCountry();
$view['userdata'] = $this->userData;
$this->load->view('product_details',$view);
//load footer
$this->loadFooter($this);
}
else
{
redirect(base_url(),"refresh");
}
}
public function viewLatestProducts()
{
//load header
$this->loadHeader($this);
//load sidebar
$this->loadSidebar($this);
//load middle content
$view["totalProducts"] = $this->product_model->getProduct("",""," AND is_new = '1'","","",""," COUNT(product_id) AS prodcnt");
$view["totalProducts"] = $view["totalProducts"][0]["prodcnt"];
$view["heading"] = "Latest Products";
$view["heading_message"] = "Here are the list of Latest Products available with us.";
//$view["more_products_url"] = base_url()."product/ajax_Latest/";
$view['more_products'] = $this->product_model->getLatestProducts($offset,$order);
$viewp['obj'] = $this;
$this->load->view('product_show_view',$view);
//load footer
$this->loadFooter($this);
}
public function ajax_Latest($offset = "0")
{
if(!$this->checkifajax())redirect(base_url(),"refresh");
$order = "";
if(isset($_GET))
{
if(isset($_GET["product_name_typeahead"]))
{
$more_products = $this->product_model->getProduct($_GET["product_name_typeahead"]);
}
else if(isset($_GET["brands_id"]))
{
$more_products = $this->product_model->getProduct("",$_GET["brands_id"]);
}
else
{
foreach($_GET as $cols=>$orders){$order .= $cols." ".$orders.", ";}
$more_products = $this->product_model->getLatestProducts($offset,"9",$order);
}
}
if($more_products)
echo json_encode(array("status"=>"success","data"=>$more_products));
else
echo json_encode(array("status"=>"fail","last"=>$offset));
}
public function viewFeaturedProducts()
{
//load header
$this->loadHeader($this);
//load sidebar
$this->loadSidebar($this);
//load middle content
$view["totalProducts"] = $this->product_model->getProduct("",""," AND is_featured = '1'","","",""," COUNT(product_id) AS prodcnt");
$view["totalProducts"] = $view["totalProducts"][0]["prodcnt"];
$view["heading"] = "Featured Products";
$view["heading_message"] = "Here are the list of Featured Products available with us.";
//$view["more_products_url"] = base_url()."product/ajax_Featured/";
$view['more_products'] = $this->product_model->getFeaturedProducts($offset,$order);
$viewp['obj'] = $this;
$this->load->view('product_show_view',$view);
//load footer
$this->loadFooter($this);
}
public function ajax_Featured($offset = "0")
{
if(!$this->checkifajax())redirect(base_url(),"refresh");
$order = "";
if(isset($_GET))
{
if(isset($_GET["product_name_typeahead"]))
{
$more_products = $this->product_model->getProduct($_GET["product_name_typeahead"]);
}
else if(isset($_GET["brands_id"]))
{
$more_products = $this->product_model->getProduct("",$_GET["brands_id"]);
}
else
{
foreach($_GET as $cols=>$orders){$order .= $cols." ".$orders.", ";}
$more_products = $this->product_model->getFeaturedProducts($offset,"9",$order);
}
}
if($more_products)
echo json_encode(array("status"=>"success","data"=>$more_products));
else
echo json_encode(array("status"=>"fail","last"=>$offset));
}
public function viewDiscountProducts()
{
//load header
$this->loadHeader($this);
//load sidebar
$this->loadSidebar($this);
//load middle content
$view["totalProducts"] = $this->product_model->getProduct("",""," AND discount_status = '1'","","",""," COUNT(product_id) AS prodcnt");
$view["totalProducts"] = $view["totalProducts"][0]["prodcnt"];
$view["heading"] = "Discounted Products";
$view["heading_message"] = "Here are the list of Discounted Products available with us.";
$view["more_products_url"] = base_url()."product/ajax_Discount/";
$viewp['obj'] = $this;
$this->load->view('ListProduct_view',$view);
//load footer
$this->loadFooter($this);
}
public function ajax_Discount($offset = "0")
{
if(!$this->checkifajax())redirect(base_url(),"refresh");
$order = "";
if(isset($_GET))
{
if(isset($_GET["product_name_typeahead"]))
{
$more_products = $this->product_model->getProduct($_GET["product_name_typeahead"]);
}
else if(isset($_GET["brands_id"]))
{
$more_products = $this->product_model->getProduct("",$_GET["brands_id"]);
}
else
{
foreach($_GET as $cols=>$orders){$order .= $cols." ".$orders.", ";}
$more_products = $this->product_model->getProduct("",""," AND discount_status = '1'",$offset,"9",$order," *");
}
}
if($more_products)
echo json_encode(array("status"=>"success","data"=>$more_products));
else
echo json_encode(array("status"=>"fail","last"=>$offset));
}
public function SearchResults()
{
//load header
$this->loadHeader($this);
//load sidebar
$this->loadSidebar($this);
$link = "";
$prod_search = "";
$brand_search = "";
if(isset($_GET["product_search"]))
{
$link .="&product_search=".$_GET["product_search"];
$prod_search = $_GET["product_search"];
}
if(isset($_GET["brands_search"]))
{
$link .="&brands_search=".$_GET["brands_search"];
if($_GET["brands_search"] == "All")
$_GET["brands_search"] = "";
$brand_search = $_GET["brands_search"];
}
//load middle content
$view["totalProducts"] = $this->product_model->getProduct($prod_search,$brand_search,"","","",""," COUNT(product_id) AS prodcnt");
$view["totalProducts"] = $view["totalProducts"][0]["prodcnt"];
$view["heading"] = "Search Results";
//$view["more_products_url"] = base_url()."product/ajax_SearchResults/";
$product_name = (isset($_GET["product_search"]))? $_GET["product_search"]:"";
$view['more_products'] = $this->product_model->getProduct($product_name,$brand_id,"",$offset,$order);
$view["addtourl"] = $link;
$viewp['obj'] = $this;
$this->load->view('product_show_view',$view);
//load footer
$this->loadFooter($this);
}
public function ajax_SearchResults($offset)
{
$product_name = (isset($_GET["product_search"]))? $_GET["product_search"]:"";
$brand_id = (!(isset($_GET["brands_search"])) || $_GET["brands_search"] == "All") ? "" : $_GET["brands_search"];
unset($_GET["product_search"]);unset($_GET["brands_search"]);
$order = "";
foreach($_GET as $cols=>$orders){$order .= $cols." ".$orders.", ";}
$searchResult = $this->product_model->getProduct($product_name,$brand_id,"",$offset,"9",$order);
if($searchResult)
{
echo json_encode(array("status"=>"success","data"=>$searchResult));
}
else
{
echo json_encode(array("status"=>"fail","data"=>"No Product Found matching your search"));
}
}
public function get_avg_rating()
{
$proID = $this->product['product_id'];
$rate = $this->product_model->getAvgRating($proID);
return $rate;
}
public function get_rev_count()
{
$proID = $this->product['product_id'];
$rcount = $this->product_model->getRevCount($proID);
return $rcount;
}
public function get_review_data()
{
$proID = $this->product['product_id'];
$rate = $this->product_model->get_rev_data($proID);
return $rate;
}
}
?>