79 lines
3.3 KiB
PHP
79 lines
3.3 KiB
PHP
<?php
|
|
class ControllerExtensionModuleLatest extends Controller {
|
|
public function index($setting) {
|
|
$this->load->language('extension/module/latest');
|
|
|
|
$this->load->model('catalog/product');
|
|
|
|
$this->load->model('tool/image');
|
|
|
|
$data['products'] = array();
|
|
$data['module_name'] = $setting['name'];
|
|
|
|
$results = $this->model_catalog_product->getLatestProducts($setting['limit']);
|
|
|
|
if ($results) {
|
|
foreach ($results as $result) {
|
|
if ($result['image']) {
|
|
$image = $this->model_tool_image->resize($result['image'], $setting['width'], $setting['height']);
|
|
} else {
|
|
$image = $this->model_tool_image->resize('placeholder.png', $setting['width'], $setting['height']);
|
|
}
|
|
|
|
if ($this->customer->isLogged() || !$this->config->get('config_customer_price')) {
|
|
$price = $this->currency->format($this->tax->calculate($result['price'], $result['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
|
|
} else {
|
|
$price = false;
|
|
}
|
|
|
|
if (!is_null($result['special']) && (float)$result['special'] >= 0) {
|
|
$special = $this->currency->format($this->tax->calculate($result['special'], $result['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
|
|
$tax_price = (float)$result['special'];
|
|
} else {
|
|
$special = false;
|
|
$tax_price = (float)$result['price'];
|
|
}
|
|
|
|
if ($this->config->get('config_tax')) {
|
|
$tax = $this->currency->format($tax_price, $this->session->data['currency']);
|
|
} else {
|
|
$tax = false;
|
|
}
|
|
|
|
if ($this->config->get('config_review_status')) {
|
|
$rating = $result['rating'];
|
|
} else {
|
|
$rating = false;
|
|
}
|
|
|
|
$results = $this->model_catalog_product->getProductImages($product_id);
|
|
if($results){
|
|
$additional_image = $this->model_tool_image->resize($results[0]['image'], $setting['width'], $setting['height']);
|
|
} else {
|
|
$additional_image = false;
|
|
}
|
|
$data['products'][] = array(
|
|
'product_id' => $result['product_id'],
|
|
'thumb' => $image,
|
|
'additional_thumb' => $additional_image,
|
|
'price_n' => $product_info['price'],
|
|
'price_2' => $this->currency->format($this->tax->calculate($product_info['price_2'], $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']),
|
|
'price_2_n' => $product_info['price_2'],
|
|
'price_3' => $this->currency->format($this->tax->calculate($product_info['price_3'], $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']),
|
|
'price_3_n' => $product_info['price_3'],
|
|
'min_price' => $this->currency->format($this->tax->calculate(min([$product_info['price'],$product_info['price_2']]), $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']),
|
|
'name' => $result['name'],
|
|
'description' => utf8_substr(trim(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8'))), 0, $this->config->get('theme_' . $this->config->get('config_theme') . '_product_description_length')) . '..',
|
|
'price' => $price,
|
|
'special' => $special,
|
|
'tax' => $tax,
|
|
'rating' => $rating,
|
|
'href' => $this->url->link('product/product', 'product_id=' . $result['product_id'])
|
|
);
|
|
}
|
|
|
|
return $this->load->view('extension/module/latest', $data);
|
|
}
|
|
}
|
|
}
|