blob: 0e763e7de21f4ab0f716e1672404e51845b46f59 (
plain)
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
|
<?php
class ControllerExtensionModuleEbayListing extends Controller {
public function index() {
if ($this->config->get('ebay_status') == 1) {
$this->load->language('extension/module/ebay');
$this->load->model('tool/image');
$this->load->model('extension/openbay/ebay_product');
$data['heading_title'] = $this->language->get('heading_title');
$data['products'] = array();
$products = $this->cache->get('ebay_listing.' . md5(serialize($products)));
if (!$products) {
$products = $this->model_extension_openbay_ebay_product->getDisplayProducts();
$this->cache->set('ebay_listing.' . md5(serialize($products)), $products);
}
foreach($products['products'] as $product) {
if (isset($product['pictures'][0])) {
$image = $this->model_extension_openbay_ebay_product->resize($product['pictures'][0], $this->config->get('ebay_listing_width'), $this->config->get('ebay_listing_height'));
} else {
$image = $this->model_tool_image->resize('placeholder.png', $this->config->get('ebay_listing_width'), $this->config->get('ebay_listing_height'));
}
$data['products'][] = array(
'thumb' => $image,
'name' => base64_decode($product['Title']),
'price' => $this->currency->format($product['priceGross'], $this->session->data['currency']),
'href' => (string)$product['link']
);
}
$data['tracking_pixel'] = $products['tracking_pixel'];
return $this->load->view('extension/module/ebay', $data);
}
}
}
|