first commit
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
class ModelCatalogCategory extends Model {
|
||||
public function getCategory($category_id) {
|
||||
$query = $this->db->query("SELECT DISTINCT * FROM " . DB_PREFIX . "category c LEFT JOIN " . DB_PREFIX . "category_description cd ON (c.category_id = cd.category_id) LEFT JOIN " . DB_PREFIX . "category_to_store c2s ON (c.category_id = c2s.category_id) WHERE c.category_id = '" . (int)$category_id . "' AND cd.language_id = '" . (int)$this->config->get('config_language_id') . "' AND c2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND c.status = '1'");
|
||||
|
||||
return $query->row;
|
||||
}
|
||||
|
||||
public function getCategories($parent_id = 0) {
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "category c LEFT JOIN " . DB_PREFIX . "category_description cd ON (c.category_id = cd.category_id) LEFT JOIN " . DB_PREFIX . "category_to_store c2s ON (c.category_id = c2s.category_id) WHERE c.parent_id = '" . (int)$parent_id . "' AND cd.language_id = '" . (int)$this->config->get('config_language_id') . "' AND c2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND c.status = '1' ORDER BY c.sort_order, LCASE(cd.name)");
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getCategoryFilters($category_id) {
|
||||
$implode = array();
|
||||
|
||||
$query = $this->db->query("SELECT filter_id FROM " . DB_PREFIX . "category_filter WHERE category_id = '" . (int)$category_id . "'");
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$implode[] = (int)$result['filter_id'];
|
||||
}
|
||||
|
||||
$filter_group_data = array();
|
||||
|
||||
if ($implode) {
|
||||
$filter_group_query = $this->db->query("SELECT DISTINCT f.filter_group_id, fgd.name, fg.sort_order FROM " . DB_PREFIX . "filter f LEFT JOIN " . DB_PREFIX . "filter_group fg ON (f.filter_group_id = fg.filter_group_id) LEFT JOIN " . DB_PREFIX . "filter_group_description fgd ON (fg.filter_group_id = fgd.filter_group_id) WHERE f.filter_id IN (" . implode(',', $implode) . ") AND fgd.language_id = '" . (int)$this->config->get('config_language_id') . "' GROUP BY f.filter_group_id ORDER BY fg.sort_order, LCASE(fgd.name)");
|
||||
|
||||
foreach ($filter_group_query->rows as $filter_group) {
|
||||
$filter_data = array();
|
||||
|
||||
$filter_query = $this->db->query("SELECT DISTINCT f.filter_id, fd.name FROM " . DB_PREFIX . "filter f LEFT JOIN " . DB_PREFIX . "filter_description fd ON (f.filter_id = fd.filter_id) WHERE f.filter_id IN (" . implode(',', $implode) . ") AND f.filter_group_id = '" . (int)$filter_group['filter_group_id'] . "' AND fd.language_id = '" . (int)$this->config->get('config_language_id') . "' ORDER BY f.sort_order, LCASE(fd.name)");
|
||||
|
||||
foreach ($filter_query->rows as $filter) {
|
||||
$filter_data[] = array(
|
||||
'filter_id' => $filter['filter_id'],
|
||||
'name' => $filter['name']
|
||||
);
|
||||
}
|
||||
|
||||
if ($filter_data) {
|
||||
$filter_group_data[] = array(
|
||||
'filter_group_id' => $filter_group['filter_group_id'],
|
||||
'name' => $filter_group['name'],
|
||||
'filter' => $filter_data
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $filter_group_data;
|
||||
}
|
||||
|
||||
public function getCategoryLayoutId($category_id) {
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "category_to_layout WHERE category_id = '" . (int)$category_id . "' AND store_id = '" . (int)$this->config->get('config_store_id') . "'");
|
||||
|
||||
if ($query->num_rows) {
|
||||
return (int)$query->row['layout_id'];
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
public function getTotalCategoriesByCategoryId($parent_id = 0) {
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total FROM " . DB_PREFIX . "category c LEFT JOIN " . DB_PREFIX . "category_to_store c2s ON (c.category_id = c2s.category_id) WHERE c.parent_id = '" . (int)$parent_id . "' AND c2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND c.status = '1'");
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,256 @@
|
||||
<?php
|
||||
// * @source See SOURCE.txt for source and other copyright.
|
||||
// * @license GNU General Public License version 3; see LICENSE.txt
|
||||
|
||||
class ModelCatalogCms extends Model {
|
||||
|
||||
|
||||
|
||||
private $NOW;
|
||||
|
||||
public function __construct($registry) {
|
||||
$this->NOW = date('Y-m-d H:i') . ':00';
|
||||
parent::__construct($registry);
|
||||
}
|
||||
|
||||
public function getProductRelatedByCategory($data) {
|
||||
|
||||
$product_data = array();
|
||||
|
||||
$this->load->model('catalog/product');
|
||||
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "product_related_wb pr LEFT JOIN " . DB_PREFIX . "product p ON (pr.product_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE pr.category_id = '" . (int)$data['category_id'] . "' AND p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "' LIMIT " . (int)$data['limit']);
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$product_data[$result['product_id']] = $this->model_catalog_product->getProduct($result['product_id']);
|
||||
}
|
||||
return $product_data;
|
||||
}
|
||||
|
||||
public function getProductRelatedByManufacturer($data) {
|
||||
|
||||
$product_data = array();
|
||||
|
||||
$this->load->model('catalog/product');
|
||||
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "product_related_mn pr LEFT JOIN " . DB_PREFIX . "product p ON (pr.product_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE pr.manufacturer_id = '" . (int)$data['manufacturer_id'] . "' AND p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "' LIMIT " . (int)$data['limit']);
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$product_data[$result['product_id']] = $this->model_catalog_product->getProduct($result['product_id']);
|
||||
}
|
||||
return $product_data;
|
||||
}
|
||||
|
||||
public function getBestSeller($data = array()) {
|
||||
|
||||
$product_data = array();
|
||||
|
||||
$sort_data = array(
|
||||
'op.name',
|
||||
'p.model',
|
||||
'p.price',
|
||||
'rating',
|
||||
'total'
|
||||
);
|
||||
$sql="SELECT op.product_id, SUM(op.quantity) AS total,(SELECT AVG(rating) FROM " . DB_PREFIX . "review r1 WHERE r1.product_id = op.product_id AND r1.status = '1' GROUP BY r1.product_id) AS rating FROM " . DB_PREFIX . "order_product op LEFT JOIN `" . DB_PREFIX . "order` o ON (op.order_id = o.order_id) LEFT JOIN `" . DB_PREFIX . "product` p ON (op.product_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE o.order_status_id > '0' AND p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "' GROUP BY op.product_id";
|
||||
|
||||
if (isset($data['sort']) && in_array($data['sort'], $sort_data)) {
|
||||
if ($data['sort'] == 'pd.name' || $data['sort'] == 'p.model') {
|
||||
$sql .= " ORDER BY LCASE(" . $data['sort'] . ")";
|
||||
} else {
|
||||
$sql .= " ORDER BY " . $data['sort'];
|
||||
}
|
||||
} else {
|
||||
$sql .= " ORDER BY p.sort_order";
|
||||
}
|
||||
|
||||
if (isset($data['order']) && ($data['order'] == 'DESC')) {
|
||||
$sql .= " DESC, LCASE(op.name) DESC";
|
||||
} else {
|
||||
$sql .= " ASC, LCASE(op.name) ASC";
|
||||
}
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$product_data[$result['product_id']] = $this->model_catalog_product->getProduct($result['product_id']);
|
||||
}
|
||||
|
||||
return $product_data;
|
||||
}
|
||||
|
||||
public function getTotalBestSeller() {
|
||||
$query = $this->db->query("SELECT COUNT(DISTINCT op.product_id) AS total FROM " . DB_PREFIX . "order_product op LEFT JOIN `" . DB_PREFIX . "order` o ON (op.order_id = o.order_id) LEFT JOIN `" . DB_PREFIX . "product` p ON (op.product_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE o.order_status_id > '0' AND p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "'");
|
||||
|
||||
if (isset($query->row['total'])) {
|
||||
return $query->row['total'];
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
public function getLatest($data = array()) {
|
||||
|
||||
$this->load->model('catalog/product');
|
||||
$NOW = date('Y-m-d H:i') . ':00';
|
||||
$sql = "SELECT * FROM (SELECT p.product_id, p.sort_order, p.model, pd.name, p.quantity, p.price, (SELECT price FROM " . DB_PREFIX . "product_discount pd2 WHERE pd2.product_id = p.product_id AND pd2.quantity = '1' AND ((pd2.date_start = '0000-00-00' OR pd2.date_start < '" . $NOW . "') AND (pd2.date_end = '0000-00-00' OR pd2.date_end > '" . $NOW . "')) ORDER BY pd2.priority ASC, pd2.price ASC LIMIT 1) AS discount, (SELECT price FROM " . DB_PREFIX . "product_special ps WHERE ps.product_id = p.product_id AND ((ps.date_start = '0000-00-00' OR ps.date_start < '" . $NOW . "') AND (ps.date_end = '0000-00-00' OR ps.date_end > '" . $NOW . "')) ORDER BY ps.priority ASC, ps.price ASC LIMIT 1) AS special, (SELECT AVG(rating) AS total FROM " . DB_PREFIX . "review r1 WHERE r1.product_id = p.product_id AND r1.status = '1' GROUP BY r1.product_id) AS rating FROM " . DB_PREFIX . "product p LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id) WHERE p.status = '1' AND p.date_available <= '" . $NOW . "' AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND pd.language_id = '" . (int)$this->config->get('config_language_id') . "' GROUP BY p.product_id ORDER BY p.date_added DESC, LCASE(pd.name) DESC";
|
||||
|
||||
$sql .= " LIMIT 0," . (int)$data['max'];
|
||||
|
||||
$sql .= ") p ORDER BY ";
|
||||
|
||||
$sort_data = array(
|
||||
'pd.name',
|
||||
'quantity',
|
||||
'ps.price',
|
||||
'rating',
|
||||
'p.sort_order',
|
||||
'p.model'
|
||||
);
|
||||
|
||||
if (isset($data['sort']) && in_array($data['sort'], $sort_data)) {
|
||||
if ($data['sort'] == 'pd.name') {
|
||||
$sql .= " LCASE('name')";
|
||||
} elseif ($data['sort'] == 'ps.price') {
|
||||
$sql .= " (CASE WHEN special IS NOT NULL THEN special WHEN discount IS NOT NULL THEN discount ELSE p.price END)";
|
||||
} else {
|
||||
$sql .= " " . $data['sort'];
|
||||
}
|
||||
} else {
|
||||
$sql .= " sort_order";
|
||||
}
|
||||
|
||||
if (isset($data['order']) && ($data['order'] == 'DESC')) {
|
||||
$sql .= " DESC, LCASE(name) DESC";
|
||||
} else {
|
||||
$sql .= " ASC, LCASE(name) ASC";
|
||||
}
|
||||
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$product_data[$result['product_id']] = $this->model_catalog_product->getProduct($result['product_id']);
|
||||
}
|
||||
|
||||
return $product_data;
|
||||
}
|
||||
|
||||
public function getMostViewed($data = array()) {
|
||||
$this->load->model('catalog/product');
|
||||
|
||||
if ($this->customer->isLogged()) {
|
||||
$customer_group_id = $this->customer->getCustomerGroupId();
|
||||
} else {
|
||||
$customer_group_id = $this->config->get('config_customer_group_id');
|
||||
}
|
||||
|
||||
$product_data = $this->cache->get('product.mostviewed.' . (int)$this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id'). '.' . $customer_group_id . '.' . (int)$data['limit']);
|
||||
|
||||
$product_data = null;
|
||||
|
||||
if (!$product_data) {
|
||||
$product_data = array();
|
||||
|
||||
$sql = "SELECT * FROM (SELECT p.product_id,
|
||||
(SELECT AVG(rating) AS total FROM " . DB_PREFIX . "review r1 WHERE r1.product_id = p.product_id
|
||||
AND r1.status = '1' GROUP BY r1.product_id) AS rating, (SELECT price FROM " . DB_PREFIX . "product_discount pd2
|
||||
WHERE pd2.product_id = p.product_id AND pd2.customer_group_id = '" . (int)$customer_group_id . "'
|
||||
AND pd2.quantity = '1' AND ((pd2.date_start = '0000-00-00' OR pd2.date_start < '" . $this->NOW . "')
|
||||
AND (pd2.date_end = '0000-00-00' OR pd2.date_end > '" . $this->NOW . "')) ORDER BY pd2.priority ASC, pd2.price ASC LIMIT 1) AS discount,
|
||||
(SELECT price FROM " . DB_PREFIX . "product_special ps
|
||||
WHERE ps.product_id = p.product_id AND ps.customer_group_id = '" . (int)$customer_group_id . "'
|
||||
AND ((ps.date_start = '0000-00-00' OR ps.date_start < '" . $this->NOW . "') AND (ps.date_end = '0000-00-00' OR ps.date_end > '" . $this->NOW . "'))
|
||||
ORDER BY ps.priority ASC, ps.price ASC LIMIT 1) AS special, p.sort_order, p.viewed, p.price, p.model";
|
||||
|
||||
$sql .= " FROM " . DB_PREFIX . "product p
|
||||
LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id)
|
||||
WHERE p.status = '1' AND p.date_available <= '" . $this->NOW . "'
|
||||
AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "'
|
||||
GROUP BY p.product_id ORDER by p.viewed DESC LIMIT 0, " . (int)$data['max'];
|
||||
|
||||
$sql .= ") p LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id AND pd.language_id = '". (int)$this->config->get('config_language_id') ."') ORDER BY ";
|
||||
|
||||
|
||||
$sort_data = array(
|
||||
'pd.name',
|
||||
'quantity',
|
||||
'ps.price',
|
||||
'rating',
|
||||
'p.sort_order',
|
||||
'p.model',
|
||||
'p.viewed'
|
||||
);
|
||||
|
||||
if (isset($data['sort']) && in_array($data['sort'], $sort_data)) {
|
||||
if ($data['sort'] == 'pd.name') {
|
||||
$sql .= " LCASE('pd.name')";
|
||||
} elseif ($data['sort'] == 'ps.price') {
|
||||
$sql .= " (CASE WHEN special IS NOT NULL THEN special WHEN discount IS NOT NULL THEN discount ELSE p.price END)";
|
||||
} else {
|
||||
$sql .= " " . $data['sort'];
|
||||
}
|
||||
} else {
|
||||
$sql .= " p.sort_order";
|
||||
}
|
||||
|
||||
if (isset($data['order']) && ($data['order'] == 'DESC')) {
|
||||
$sql .= " DESC, LCASE(name) DESC";
|
||||
} else {
|
||||
$sql .= " ASC, LCASE(name) ASC";
|
||||
}
|
||||
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$product_data[$result['product_id']] = $this->model_catalog_product->getProduct($result['product_id']);
|
||||
}
|
||||
|
||||
$this->cache->set('product.mostviewed.' . (int)$this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id'). '.' . $customer_group_id . '.' . (int)$data['limit'], $product_data);
|
||||
}
|
||||
|
||||
return $product_data;
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
class ModelCatalogInformation extends Model {
|
||||
public function getInformation($information_id) {
|
||||
$query = $this->db->query("SELECT DISTINCT * FROM " . DB_PREFIX . "information i LEFT JOIN " . DB_PREFIX . "information_description id ON (i.information_id = id.information_id) LEFT JOIN " . DB_PREFIX . "information_to_store i2s ON (i.information_id = i2s.information_id) WHERE i.information_id = '" . (int)$information_id . "' AND id.language_id = '" . (int)$this->config->get('config_language_id') . "' AND i2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND i.status = '1'");
|
||||
|
||||
return $query->row;
|
||||
}
|
||||
|
||||
public function getInformations() {
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "information i LEFT JOIN " . DB_PREFIX . "information_description id ON (i.information_id = id.information_id) LEFT JOIN " . DB_PREFIX . "information_to_store i2s ON (i.information_id = i2s.information_id) WHERE id.language_id = '" . (int)$this->config->get('config_language_id') . "' AND i2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND i.status = '1' ORDER BY i.sort_order, LCASE(id.title) ASC");
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getInformationLayoutId($information_id) {
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "information_to_layout WHERE information_id = '" . (int)$information_id . "' AND store_id = '" . (int)$this->config->get('config_store_id') . "'");
|
||||
|
||||
if ($query->num_rows) {
|
||||
return (int)$query->row['layout_id'];
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
<?php
|
||||
// * @source See SOURCE.txt for source and other copyright.
|
||||
// * @license GNU General Public License version 3; see LICENSE.txt
|
||||
|
||||
class ModelCatalogManufacturer extends Model {
|
||||
|
||||
public function getManufacturerLayoutId($manufacturer_id) {
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "manufacturer_to_layout WHERE manufacturer_id = '" . (int)$manufacturer_id . "' AND store_id = '" . (int)$this->config->get('config_store_id') . "'");
|
||||
if ($query->num_rows) {
|
||||
return $query->row['layout_id'];
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
public function getManufacturer($manufacturer_id) {
|
||||
$query = $this->db->query("SELECT DISTINCT * FROM " . DB_PREFIX . "manufacturer m LEFT JOIN " . DB_PREFIX . "manufacturer_description md ON (m.manufacturer_id = md.manufacturer_id) LEFT JOIN " . DB_PREFIX . "manufacturer_to_store m2s ON (m.manufacturer_id = m2s.manufacturer_id) WHERE m.manufacturer_id = '" . (int)$manufacturer_id . "' AND md.language_id = '" . (int)$this->config->get('config_language_id') . "' AND m2s.store_id = '" . (int)$this->config->get('config_store_id') . "'");
|
||||
|
||||
return $query->row;
|
||||
}
|
||||
|
||||
public function getManufacturers($data = array()) {
|
||||
if ($data) {
|
||||
$sql = "SELECT * FROM " . DB_PREFIX . "manufacturer m LEFT JOIN " . DB_PREFIX . "manufacturer_description md ON (m.manufacturer_id = md.manufacturer_id) LEFT JOIN " . DB_PREFIX . "manufacturer_to_store m2s ON (m.manufacturer_id = m2s.manufacturer_id) WHERE m2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND md.language_id = '" . (int)$this->config->get('config_language_id') . "'";
|
||||
|
||||
$sort_data = array(
|
||||
'name',
|
||||
'sort_order'
|
||||
);
|
||||
|
||||
if (isset($data['sort']) && in_array($data['sort'], $sort_data)) {
|
||||
$sql .= " ORDER BY " . $data['sort'];
|
||||
} else {
|
||||
$sql .= " ORDER BY name";
|
||||
}
|
||||
|
||||
if (isset($data['order']) && ($data['order'] == 'DESC')) {
|
||||
$sql .= " DESC";
|
||||
} else {
|
||||
$sql .= " ASC";
|
||||
}
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
} else {
|
||||
$manufacturer_data = $this->cache->get('manufacturer.' . (int)$this->config->get('config_store_id') . '.' . (int)$this->config->get('config_language_id'));
|
||||
|
||||
if (!$manufacturer_data) {
|
||||
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "manufacturer m LEFT JOIN " . DB_PREFIX . "manufacturer_description md ON (m.manufacturer_id = md.manufacturer_id) LEFT JOIN " . DB_PREFIX . "manufacturer_to_store m2s ON (m.manufacturer_id = m2s.manufacturer_id) WHERE m2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND md.language_id = '" . (int)$this->config->get('config_language_id') . "' ORDER BY name");
|
||||
|
||||
$manufacturer_data = $query->rows;
|
||||
|
||||
$this->cache->set('manufacturer.' . (int)$this->config->get('config_store_id') . '.' . (int)$this->config->get('config_language_id'), $manufacturer_data);
|
||||
}
|
||||
return $manufacturer_data;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,546 @@
|
||||
<?php
|
||||
// * @source See SOURCE.txt for source and other copyright.
|
||||
// * @license GNU General Public License version 3; see LICENSE.txt
|
||||
|
||||
class ModelCatalogProduct extends Model {
|
||||
public function updateViewed($product_id) {
|
||||
$this->db->query("UPDATE " . DB_PREFIX . "product SET viewed = (viewed + 1) WHERE product_id = '" . (int)$product_id . "'");
|
||||
}
|
||||
|
||||
public function getProduct($product_id) {
|
||||
$query = $this->db->query("SELECT DISTINCT *, pd.name AS name, p.image, p.price_2, p.price_3, p.noindex AS noindex, m.name AS manufacturer, (SELECT price FROM " . DB_PREFIX . "product_discount pd2 WHERE pd2.product_id = p.product_id AND pd2.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "' AND pd2.quantity = '1' AND ((pd2.date_start = '0000-00-00' OR pd2.date_start < NOW()) AND (pd2.date_end = '0000-00-00' OR pd2.date_end > NOW())) ORDER BY pd2.priority ASC, pd2.price ASC LIMIT 1) AS discount, (SELECT price FROM " . DB_PREFIX . "product_special ps WHERE ps.product_id = p.product_id AND ps.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "' AND ((ps.date_start = '0000-00-00' OR ps.date_start < NOW()) AND (ps.date_end = '0000-00-00' OR ps.date_end > NOW())) ORDER BY ps.priority ASC, ps.price ASC LIMIT 1) AS special, (SELECT points FROM " . DB_PREFIX . "product_reward pr WHERE pr.product_id = p.product_id AND pr.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "') AS reward, (SELECT ss.name FROM " . DB_PREFIX . "stock_status ss WHERE ss.stock_status_id = p.stock_status_id AND ss.language_id = '" . (int)$this->config->get('config_language_id') . "') AS stock_status, (SELECT wcd.unit FROM " . DB_PREFIX . "weight_class_description wcd WHERE p.weight_class_id = wcd.weight_class_id AND wcd.language_id = '" . (int)$this->config->get('config_language_id') . "') AS weight_class, (SELECT lcd.unit FROM " . DB_PREFIX . "length_class_description lcd WHERE p.length_class_id = lcd.length_class_id AND lcd.language_id = '" . (int)$this->config->get('config_language_id') . "') AS length_class, (SELECT AVG(rating) AS total FROM " . DB_PREFIX . "review r1 WHERE r1.product_id = p.product_id AND r1.status = '1' GROUP BY r1.product_id) AS rating, (SELECT COUNT(*) AS total FROM " . DB_PREFIX . "review r2 WHERE r2.product_id = p.product_id AND r2.status = '1' GROUP BY r2.product_id) AS reviews, p.sort_order FROM " . DB_PREFIX . "product p LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) LEFT JOIN " . DB_PREFIX . "manufacturer m ON (p.manufacturer_id = m.manufacturer_id) WHERE p.product_id = '" . (int)$product_id . "' AND pd.language_id = '" . (int)$this->config->get('config_language_id') . "' AND p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "'");
|
||||
|
||||
if ($query->num_rows) {
|
||||
return array(
|
||||
'product_id' => $query->row['product_id'],
|
||||
'name' => $query->row['name'],
|
||||
'description' => $query->row['description'],
|
||||
'meta_title' => $query->row['meta_title'],
|
||||
'noindex' => $query->row['noindex'],
|
||||
'meta_h1' => $query->row['meta_h1'],
|
||||
'meta_description' => $query->row['meta_description'],
|
||||
'meta_keyword' => $query->row['meta_keyword'],
|
||||
'tag' => $query->row['tag'],
|
||||
'model' => $query->row['model'],
|
||||
'sku' => $query->row['sku'],
|
||||
'upc' => $query->row['upc'],
|
||||
'ean' => $query->row['ean'],
|
||||
'jan' => $query->row['jan'],
|
||||
'isbn' => $query->row['isbn'],
|
||||
'mpn' => $query->row['mpn'],
|
||||
'location' => $query->row['location'],
|
||||
'quantity' => $query->row['quantity'],
|
||||
'stock_status' => $query->row['stock_status'],
|
||||
'image' => $query->row['image'],
|
||||
'manufacturer_id' => $query->row['manufacturer_id'],
|
||||
'manufacturer' => $query->row['manufacturer'],
|
||||
'price' => ($query->row['discount'] ? $query->row['discount'] : $query->row['price']),
|
||||
'price_2' => $query->row['price_2'],
|
||||
'price_3' => $query->row['price_3'],
|
||||
'special' => $query->row['special'],
|
||||
'reward' => $query->row['reward'],
|
||||
'points' => $query->row['points'],
|
||||
'tax_class_id' => $query->row['tax_class_id'],
|
||||
'date_available' => $query->row['date_available'],
|
||||
'weight' => $query->row['weight'],
|
||||
'weight_class_id' => $query->row['weight_class_id'],
|
||||
'length' => $query->row['length'],
|
||||
'width' => $query->row['width'],
|
||||
'height' => $query->row['height'],
|
||||
'length_class_id' => $query->row['length_class_id'],
|
||||
'subtract' => $query->row['subtract'],
|
||||
'rating' => round($query->row['rating']),
|
||||
'reviews' => $query->row['reviews'] ? $query->row['reviews'] : 0,
|
||||
'minimum' => $query->row['minimum'],
|
||||
'sort_order' => $query->row['sort_order'],
|
||||
'status' => $query->row['status'],
|
||||
'date_added' => $query->row['date_added'],
|
||||
'date_modified' => $query->row['date_modified'],
|
||||
'viewed' => $query->row['viewed']
|
||||
);
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function getProducts($data = array()) {
|
||||
$sql = "SELECT p.product_id, (SELECT AVG(rating) AS total FROM " . DB_PREFIX . "review r1 WHERE r1.product_id = p.product_id AND r1.status = '1' GROUP BY r1.product_id) AS rating, (SELECT price FROM " . DB_PREFIX . "product_discount pd2 WHERE pd2.product_id = p.product_id AND pd2.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "' AND pd2.quantity = '1' AND ((pd2.date_start = '0000-00-00' OR pd2.date_start < NOW()) AND (pd2.date_end = '0000-00-00' OR pd2.date_end > NOW())) ORDER BY pd2.priority ASC, pd2.price ASC LIMIT 1) AS discount, (SELECT price FROM " . DB_PREFIX . "product_special ps WHERE ps.product_id = p.product_id AND ps.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "' AND ((ps.date_start = '0000-00-00' OR ps.date_start < NOW()) AND (ps.date_end = '0000-00-00' OR ps.date_end > NOW())) ORDER BY ps.priority ASC, ps.price ASC LIMIT 1) AS special";
|
||||
|
||||
if (!empty($data['filter_category_id'])) {
|
||||
if (!empty($data['filter_sub_category'])) {
|
||||
$sql .= " FROM " . DB_PREFIX . "category_path cp LEFT JOIN " . DB_PREFIX . "product_to_category p2c ON (cp.category_id = p2c.category_id)";
|
||||
} else {
|
||||
$sql .= " FROM " . DB_PREFIX . "product_to_category p2c";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_filter'])) {
|
||||
$sql .= " LEFT JOIN " . DB_PREFIX . "product_filter pf ON (p2c.product_id = pf.product_id) LEFT JOIN " . DB_PREFIX . "product p ON (pf.product_id = p.product_id)";
|
||||
} else {
|
||||
$sql .= " LEFT JOIN " . DB_PREFIX . "product p ON (p2c.product_id = p.product_id)";
|
||||
}
|
||||
} else {
|
||||
$sql .= " FROM " . DB_PREFIX . "product p";
|
||||
}
|
||||
|
||||
$sql .= " LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE pd.language_id = '" . (int)$this->config->get('config_language_id') . "' AND p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "'";
|
||||
|
||||
if (!empty($data['filter_category_id'])) {
|
||||
if (!empty($data['filter_sub_category'])) {
|
||||
$sql .= " AND cp.path_id = '" . (int)$data['filter_category_id'] . "'";
|
||||
} else {
|
||||
$sql .= " AND p2c.category_id = '" . (int)$data['filter_category_id'] . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_filter'])) {
|
||||
$implode = array();
|
||||
|
||||
$filters = explode(',', $data['filter_filter']);
|
||||
|
||||
foreach ($filters as $filter_id) {
|
||||
$implode[] = (int)$filter_id;
|
||||
}
|
||||
|
||||
$sql .= " AND pf.filter_id IN (" . implode(',', $implode) . ")";
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($data['filter_name']) || !empty($data['filter_tag'])) {
|
||||
$sql .= " AND (";
|
||||
|
||||
if (!empty($data['filter_name'])) {
|
||||
$implode = array();
|
||||
|
||||
$words = explode(' ', trim(preg_replace('/\s+/', ' ', $data['filter_name'])));
|
||||
|
||||
foreach ($words as $word) {
|
||||
$implode[] = "pd.name LIKE '%" . $this->db->escape($word) . "%'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " " . implode(" AND ", $implode) . "";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_description'])) {
|
||||
$sql .= " OR pd.description LIKE '%" . $this->db->escape($data['filter_name']) . "%'";
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($data['filter_name']) && !empty($data['filter_tag'])) {
|
||||
$sql .= " OR ";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_tag'])) {
|
||||
$implode = array();
|
||||
|
||||
$words = explode(' ', trim(preg_replace('/\s+/', ' ', $data['filter_tag'])));
|
||||
|
||||
foreach ($words as $word) {
|
||||
$implode[] = "pd.tag LIKE '%" . $this->db->escape($word) . "%'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " " . implode(" AND ", $implode) . "";
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($data['filter_name'])) {
|
||||
$sql .= " OR LCASE(p.model) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.sku) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.upc) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.ean) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.jan) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.isbn) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.mpn) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
}
|
||||
|
||||
$sql .= ")";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_manufacturer_id'])) {
|
||||
$sql .= " AND p.manufacturer_id = '" . (int)$data['filter_manufacturer_id'] . "'";
|
||||
}
|
||||
|
||||
$sql .= " GROUP BY p.product_id";
|
||||
|
||||
$sort_data = array(
|
||||
'pd.name',
|
||||
'p.model',
|
||||
'p.quantity',
|
||||
'p.price',
|
||||
'rating',
|
||||
'p.sort_order',
|
||||
'p.date_added'
|
||||
);
|
||||
|
||||
if (isset($data['sort']) && in_array($data['sort'], $sort_data)) {
|
||||
if ($data['sort'] == 'pd.name' || $data['sort'] == 'p.model') {
|
||||
$sql .= " ORDER BY LCASE(" . $data['sort'] . ")";
|
||||
} elseif ($data['sort'] == 'p.price') {
|
||||
$sql .= " ORDER BY (CASE WHEN special IS NOT NULL THEN special WHEN discount IS NOT NULL THEN discount ELSE p.price END)";
|
||||
} else {
|
||||
$sql .= " ORDER BY " . $data['sort'];
|
||||
}
|
||||
} else {
|
||||
$sql .= " ORDER BY p.sort_order";
|
||||
}
|
||||
|
||||
if (isset($data['order']) && ($data['order'] == 'DESC')) {
|
||||
$sql .= " DESC, LCASE(pd.name) DESC";
|
||||
} else {
|
||||
$sql .= " ASC, LCASE(pd.name) ASC";
|
||||
}
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$product_data = array();
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$product_data[$result['product_id']] = $this->getProduct($result['product_id']);
|
||||
}
|
||||
|
||||
return $product_data;
|
||||
}
|
||||
|
||||
public function getProductSpecials($data = array()) {
|
||||
$sql = "SELECT DISTINCT ps.product_id, (SELECT AVG(rating) FROM " . DB_PREFIX . "review r1 WHERE r1.product_id = ps.product_id AND r1.status = '1' GROUP BY r1.product_id) AS rating FROM " . DB_PREFIX . "product_special ps LEFT JOIN " . DB_PREFIX . "product p ON (ps.product_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND ps.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "' AND ((ps.date_start = '0000-00-00' OR ps.date_start < NOW()) AND (ps.date_end = '0000-00-00' OR ps.date_end > NOW())) GROUP BY ps.product_id";
|
||||
|
||||
$sort_data = array(
|
||||
'pd.name',
|
||||
'p.model',
|
||||
'ps.price',
|
||||
'rating',
|
||||
'p.sort_order'
|
||||
);
|
||||
|
||||
if (isset($data['sort']) && in_array($data['sort'], $sort_data)) {
|
||||
if ($data['sort'] == 'pd.name' || $data['sort'] == 'p.model') {
|
||||
$sql .= " ORDER BY LCASE(" . $data['sort'] . ")";
|
||||
} else {
|
||||
$sql .= " ORDER BY " . $data['sort'];
|
||||
}
|
||||
} else {
|
||||
$sql .= " ORDER BY p.sort_order";
|
||||
}
|
||||
|
||||
if (isset($data['order']) && ($data['order'] == 'DESC')) {
|
||||
$sql .= " DESC, LCASE(pd.name) DESC";
|
||||
} else {
|
||||
$sql .= " ASC, LCASE(pd.name) ASC";
|
||||
}
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$product_data = array();
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$product_data[$result['product_id']] = $this->getProduct($result['product_id']);
|
||||
}
|
||||
|
||||
return $product_data;
|
||||
}
|
||||
|
||||
public function getLatestProducts($limit) {
|
||||
$product_data = $this->cache->get('product.latest.' . (int)$this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id') . '.' . $this->config->get('config_customer_group_id') . '.' . (int)$limit);
|
||||
|
||||
if (!$product_data) {
|
||||
$query = $this->db->query("SELECT p.product_id FROM " . DB_PREFIX . "product p LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "' ORDER BY p.date_added DESC LIMIT " . (int)$limit);
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$product_data[$result['product_id']] = $this->getProduct($result['product_id']);
|
||||
}
|
||||
|
||||
$this->cache->set('product.latest.' . (int)$this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id') . '.' . $this->config->get('config_customer_group_id') . '.' . (int)$limit, $product_data);
|
||||
}
|
||||
|
||||
return $product_data;
|
||||
}
|
||||
|
||||
public function getPopularProducts($limit) {
|
||||
$product_data = $this->cache->get('product.popular.' . (int)$this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id') . '.' . $this->config->get('config_customer_group_id') . '.' . (int)$limit);
|
||||
|
||||
if (!$product_data) {
|
||||
$query = $this->db->query("SELECT p.product_id FROM " . DB_PREFIX . "product p LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "' ORDER BY p.viewed DESC, p.date_added DESC LIMIT " . (int)$limit);
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$product_data[$result['product_id']] = $this->getProduct($result['product_id']);
|
||||
}
|
||||
|
||||
$this->cache->set('product.popular.' . (int)$this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id') . '.' . $this->config->get('config_customer_group_id') . '.' . (int)$limit, $product_data);
|
||||
}
|
||||
|
||||
return $product_data;
|
||||
}
|
||||
|
||||
public function getBestSellerProducts($limit) {
|
||||
$product_data = $this->cache->get('product.bestseller.' . (int)$this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id') . '.' . $this->config->get('config_customer_group_id') . '.' . (int)$limit);
|
||||
|
||||
if (!$product_data) {
|
||||
$product_data = array();
|
||||
|
||||
$query = $this->db->query("SELECT op.product_id, SUM(op.quantity) AS total FROM " . DB_PREFIX . "order_product op LEFT JOIN `" . DB_PREFIX . "order` o ON (op.order_id = o.order_id) LEFT JOIN `" . DB_PREFIX . "product` p ON (op.product_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE o.order_status_id > '0' AND p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "' GROUP BY op.product_id ORDER BY total DESC LIMIT " . (int)$limit);
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$product_data[$result['product_id']] = $this->getProduct($result['product_id']);
|
||||
}
|
||||
|
||||
$this->cache->set('product.bestseller.' . (int)$this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id') . '.' . $this->config->get('config_customer_group_id') . '.' . (int)$limit, $product_data);
|
||||
}
|
||||
|
||||
return $product_data;
|
||||
}
|
||||
|
||||
public function getProductAttributes($product_id) {
|
||||
$product_attribute_group_data = array();
|
||||
|
||||
$product_attribute_group_query = $this->db->query("SELECT ag.attribute_group_id, agd.name FROM " . DB_PREFIX . "product_attribute pa LEFT JOIN " . DB_PREFIX . "attribute a ON (pa.attribute_id = a.attribute_id) LEFT JOIN " . DB_PREFIX . "attribute_group ag ON (a.attribute_group_id = ag.attribute_group_id) LEFT JOIN " . DB_PREFIX . "attribute_group_description agd ON (ag.attribute_group_id = agd.attribute_group_id) WHERE pa.product_id = '" . (int)$product_id . "' AND agd.language_id = '" . (int)$this->config->get('config_language_id') . "' GROUP BY ag.attribute_group_id ORDER BY ag.sort_order, agd.name");
|
||||
|
||||
foreach ($product_attribute_group_query->rows as $product_attribute_group) {
|
||||
$product_attribute_data = array();
|
||||
|
||||
$product_attribute_query = $this->db->query("SELECT a.attribute_id, ad.name, pa.text FROM " . DB_PREFIX . "product_attribute pa LEFT JOIN " . DB_PREFIX . "attribute a ON (pa.attribute_id = a.attribute_id) LEFT JOIN " . DB_PREFIX . "attribute_description ad ON (a.attribute_id = ad.attribute_id) WHERE pa.product_id = '" . (int)$product_id . "' AND a.attribute_group_id = '" . (int)$product_attribute_group['attribute_group_id'] . "' AND ad.language_id = '" . (int)$this->config->get('config_language_id') . "' AND pa.language_id = '" . (int)$this->config->get('config_language_id') . "' ORDER BY a.sort_order, ad.name");
|
||||
|
||||
foreach ($product_attribute_query->rows as $product_attribute) {
|
||||
$product_attribute_data[] = array(
|
||||
'attribute_id' => $product_attribute['attribute_id'],
|
||||
'name' => $product_attribute['name'],
|
||||
'text' => $product_attribute['text']
|
||||
);
|
||||
}
|
||||
|
||||
$product_attribute_group_data[] = array(
|
||||
'attribute_group_id' => $product_attribute_group['attribute_group_id'],
|
||||
'name' => $product_attribute_group['name'],
|
||||
'attribute' => $product_attribute_data
|
||||
);
|
||||
}
|
||||
|
||||
return $product_attribute_group_data;
|
||||
}
|
||||
|
||||
public function getProductOptions($product_id) {
|
||||
$product_option_data = array();
|
||||
|
||||
$product_option_query = $this->db->query("SELECT * FROM " . DB_PREFIX . "product_option po LEFT JOIN `" . DB_PREFIX . "option` o ON (po.option_id = o.option_id) LEFT JOIN " . DB_PREFIX . "option_description od ON (o.option_id = od.option_id) WHERE po.product_id = '" . (int)$product_id . "' AND od.language_id = '" . (int)$this->config->get('config_language_id') . "' ORDER BY o.sort_order");
|
||||
|
||||
foreach ($product_option_query->rows as $product_option) {
|
||||
$product_option_value_data = array();
|
||||
|
||||
$product_option_value_query = $this->db->query("SELECT * FROM " . DB_PREFIX . "product_option_value pov LEFT JOIN " . DB_PREFIX . "option_value ov ON (pov.option_value_id = ov.option_value_id) LEFT JOIN " . DB_PREFIX . "option_value_description ovd ON (ov.option_value_id = ovd.option_value_id) WHERE pov.product_id = '" . (int)$product_id . "' AND pov.product_option_id = '" . (int)$product_option['product_option_id'] . "' AND ovd.language_id = '" . (int)$this->config->get('config_language_id') . "' ORDER BY ov.sort_order");
|
||||
|
||||
foreach ($product_option_value_query->rows as $product_option_value) {
|
||||
$product_option_value_data[] = array(
|
||||
'product_option_value_id' => $product_option_value['product_option_value_id'],
|
||||
'option_value_id' => $product_option_value['option_value_id'],
|
||||
'name' => $product_option_value['name'],
|
||||
'image' => $product_option_value['image'],
|
||||
'quantity' => $product_option_value['quantity'],
|
||||
'subtract' => $product_option_value['subtract'],
|
||||
'price' => $product_option_value['price'],
|
||||
'price_prefix' => $product_option_value['price_prefix'],
|
||||
'weight' => $product_option_value['weight'],
|
||||
'weight_prefix' => $product_option_value['weight_prefix']
|
||||
);
|
||||
}
|
||||
|
||||
$product_option_data[] = array(
|
||||
'product_option_id' => $product_option['product_option_id'],
|
||||
'product_option_value' => $product_option_value_data,
|
||||
'option_id' => $product_option['option_id'],
|
||||
'name' => $product_option['name'],
|
||||
'type' => $product_option['type'],
|
||||
'value' => $product_option['value'],
|
||||
'required' => $product_option['required']
|
||||
);
|
||||
}
|
||||
|
||||
return $product_option_data;
|
||||
}
|
||||
|
||||
public function getProductDiscounts($product_id) {
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "product_discount WHERE product_id = '" . (int)$product_id . "' AND customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "' AND quantity > 1 AND ((date_start = '0000-00-00' OR date_start < NOW()) AND (date_end = '0000-00-00' OR date_end > NOW())) ORDER BY quantity ASC, priority ASC, price ASC");
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getProductImages($product_id) {
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "product_image WHERE product_id = '" . (int)$product_id . "' ORDER BY sort_order ASC");
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getProductRelated($product_id) {
|
||||
$product_data = array();
|
||||
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "product_related pr LEFT JOIN " . DB_PREFIX . "product p ON (pr.related_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE pr.product_id = '" . (int)$product_id . "' AND p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "'");
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$product_data[$result['related_id']] = $this->getProduct($result['related_id']);
|
||||
}
|
||||
|
||||
return $product_data;
|
||||
}
|
||||
|
||||
public function getProductLayoutId($product_id) {
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "product_to_layout WHERE product_id = '" . (int)$product_id . "' AND store_id = '" . (int)$this->config->get('config_store_id') . "'");
|
||||
|
||||
if ($query->num_rows) {
|
||||
return (int)$query->row['layout_id'];
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
public function getCategories($product_id) {
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "product_to_category WHERE product_id = '" . (int)$product_id . "'");
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalProducts($data = array()) {
|
||||
$sql = "SELECT COUNT(DISTINCT p.product_id) AS total";
|
||||
|
||||
if (!empty($data['filter_category_id'])) {
|
||||
if (!empty($data['filter_sub_category'])) {
|
||||
$sql .= " FROM " . DB_PREFIX . "category_path cp LEFT JOIN " . DB_PREFIX . "product_to_category p2c ON (cp.category_id = p2c.category_id)";
|
||||
} else {
|
||||
$sql .= " FROM " . DB_PREFIX . "product_to_category p2c";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_filter'])) {
|
||||
$sql .= " LEFT JOIN " . DB_PREFIX . "product_filter pf ON (p2c.product_id = pf.product_id) LEFT JOIN " . DB_PREFIX . "product p ON (pf.product_id = p.product_id)";
|
||||
} else {
|
||||
$sql .= " LEFT JOIN " . DB_PREFIX . "product p ON (p2c.product_id = p.product_id)";
|
||||
}
|
||||
} else {
|
||||
$sql .= " FROM " . DB_PREFIX . "product p";
|
||||
}
|
||||
|
||||
$sql .= " LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE pd.language_id = '" . (int)$this->config->get('config_language_id') . "' AND p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "'";
|
||||
|
||||
if (!empty($data['filter_category_id'])) {
|
||||
if (!empty($data['filter_sub_category'])) {
|
||||
$sql .= " AND cp.path_id = '" . (int)$data['filter_category_id'] . "'";
|
||||
} else {
|
||||
$sql .= " AND p2c.category_id = '" . (int)$data['filter_category_id'] . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_filter'])) {
|
||||
$implode = array();
|
||||
|
||||
$filters = explode(',', $data['filter_filter']);
|
||||
|
||||
foreach ($filters as $filter_id) {
|
||||
$implode[] = (int)$filter_id;
|
||||
}
|
||||
|
||||
$sql .= " AND pf.filter_id IN (" . implode(',', $implode) . ")";
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($data['filter_name']) || !empty($data['filter_tag'])) {
|
||||
$sql .= " AND (";
|
||||
|
||||
if (!empty($data['filter_name'])) {
|
||||
$implode = array();
|
||||
|
||||
$words = explode(' ', trim(preg_replace('/\s+/', ' ', $data['filter_name'])));
|
||||
|
||||
foreach ($words as $word) {
|
||||
$implode[] = "pd.name LIKE '%" . $this->db->escape($word) . "%'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " " . implode(" AND ", $implode) . "";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_description'])) {
|
||||
$sql .= " OR pd.description LIKE '%" . $this->db->escape($data['filter_name']) . "%'";
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($data['filter_name']) && !empty($data['filter_tag'])) {
|
||||
$sql .= " OR ";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_tag'])) {
|
||||
$implode = array();
|
||||
|
||||
$words = explode(' ', trim(preg_replace('/\s+/', ' ', $data['filter_tag'])));
|
||||
|
||||
foreach ($words as $word) {
|
||||
$implode[] = "pd.tag LIKE '%" . $this->db->escape($word) . "%'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " " . implode(" AND ", $implode) . "";
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($data['filter_name'])) {
|
||||
$sql .= " OR LCASE(p.model) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.sku) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.upc) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.ean) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.jan) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.isbn) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
$sql .= " OR LCASE(p.mpn) = '" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "'";
|
||||
}
|
||||
|
||||
$sql .= ")";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_manufacturer_id'])) {
|
||||
$sql .= " AND p.manufacturer_id = '" . (int)$data['filter_manufacturer_id'] . "'";
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
|
||||
public function getProfile($product_id, $recurring_id) {
|
||||
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "recurring r JOIN " . DB_PREFIX . "product_recurring pr ON (pr.recurring_id = r.recurring_id AND pr.product_id = '" . (int)$product_id . "') WHERE pr.recurring_id = '" . (int)$recurring_id . "' AND status = '1' AND pr.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "'");
|
||||
|
||||
return $query->row;
|
||||
}
|
||||
|
||||
public function getProfiles($product_id) {
|
||||
$query = $this->db->query("SELECT rd.* FROM " . DB_PREFIX . "product_recurring pr JOIN " . DB_PREFIX . "recurring_description rd ON (rd.language_id = " . (int)$this->config->get('config_language_id') . " AND rd.recurring_id = pr.recurring_id) JOIN " . DB_PREFIX . "recurring r ON r.recurring_id = rd.recurring_id WHERE pr.product_id = " . (int)$product_id . " AND status = '1' AND pr.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "' ORDER BY sort_order ASC");
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalProductSpecials() {
|
||||
$query = $this->db->query("SELECT COUNT(DISTINCT ps.product_id) AS total FROM " . DB_PREFIX . "product_special ps LEFT JOIN " . DB_PREFIX . "product p ON (ps.product_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) WHERE p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND ps.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "' AND ((ps.date_start = '0000-00-00' OR ps.date_start < NOW()) AND (ps.date_end = '0000-00-00' OR ps.date_end > NOW()))");
|
||||
|
||||
if (isset($query->row['total'])) {
|
||||
return $query->row['total'];
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
class ModelCatalogReview extends Model {
|
||||
public function addReview($product_id, $data) {
|
||||
$this->db->query("INSERT INTO " . DB_PREFIX . "review SET author = '" . $this->db->escape($data['name']) . "', customer_id = '" . (int)$this->customer->getId() . "', product_id = '" . (int)$product_id . "', text = '" . $this->db->escape($data['text']) . "', rating = '" . (int)$data['rating'] . "', date_added = NOW()");
|
||||
|
||||
$review_id = $this->db->getLastId();
|
||||
|
||||
if (in_array('review', (array)$this->config->get('config_mail_alert'))) {
|
||||
$this->load->language('mail/review');
|
||||
$this->load->model('catalog/product');
|
||||
|
||||
$product_info = $this->model_catalog_product->getProduct($product_id);
|
||||
|
||||
$subject = sprintf($this->language->get('text_subject'), html_entity_decode($this->config->get('config_name'), ENT_QUOTES, 'UTF-8'));
|
||||
|
||||
$message = $this->language->get('text_waiting') . "\n";
|
||||
$message .= sprintf($this->language->get('text_product'), html_entity_decode($product_info['name'], ENT_QUOTES, 'UTF-8')) . "\n";
|
||||
$message .= sprintf($this->language->get('text_reviewer'), html_entity_decode($data['name'], ENT_QUOTES, 'UTF-8')) . "\n";
|
||||
$message .= sprintf($this->language->get('text_rating'), $data['rating']) . "\n";
|
||||
$message .= $this->language->get('text_review') . "\n";
|
||||
$message .= html_entity_decode($data['text'], ENT_QUOTES, 'UTF-8') . "\n\n";
|
||||
|
||||
$mail = new Mail($this->config->get('config_mail_engine'));
|
||||
$mail->parameter = $this->config->get('config_mail_parameter');
|
||||
$mail->smtp_hostname = $this->config->get('config_mail_smtp_hostname');
|
||||
$mail->smtp_username = $this->config->get('config_mail_smtp_username');
|
||||
$mail->smtp_password = html_entity_decode($this->config->get('config_mail_smtp_password'), ENT_QUOTES, 'UTF-8');
|
||||
$mail->smtp_port = $this->config->get('config_mail_smtp_port');
|
||||
$mail->smtp_timeout = $this->config->get('config_mail_smtp_timeout');
|
||||
|
||||
$mail->setTo($this->config->get('config_email'));
|
||||
$mail->setFrom($this->config->get('config_email'));
|
||||
$mail->setSender(html_entity_decode($this->config->get('config_name'), ENT_QUOTES, 'UTF-8'));
|
||||
$mail->setSubject($subject);
|
||||
$mail->setText($message);
|
||||
$mail->send();
|
||||
|
||||
// Send to additional alert emails
|
||||
$emails = explode(',', $this->config->get('config_mail_alert_email'));
|
||||
|
||||
foreach ($emails as $email) {
|
||||
if ($email && filter_var($email, FILTER_VALIDATE_EMAIL)) {
|
||||
$mail->setTo($email);
|
||||
$mail->send();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function getReviewsByProductId($product_id, $start = 0, $limit = 20) {
|
||||
if ($start < 0) {
|
||||
$start = 0;
|
||||
}
|
||||
|
||||
if ($limit < 1) {
|
||||
$limit = 20;
|
||||
}
|
||||
|
||||
$query = $this->db->query("SELECT r.review_id, r.author, r.rating, r.text, p.product_id, pd.name, p.price, p.image, r.date_added FROM " . DB_PREFIX . "review r LEFT JOIN " . DB_PREFIX . "product p ON (r.product_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id) WHERE p.product_id = '" . (int)$product_id . "' AND p.date_available <= NOW() AND p.status = '1' AND r.status = '1' AND pd.language_id = '" . (int)$this->config->get('config_language_id') . "' ORDER BY r.date_added DESC LIMIT " . (int)$start . "," . (int)$limit);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalReviewsByProductId($product_id) {
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total FROM " . DB_PREFIX . "review r LEFT JOIN " . DB_PREFIX . "product p ON (r.product_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id) WHERE p.product_id = '" . (int)$product_id . "' AND p.date_available <= NOW() AND p.status = '1' AND r.status = '1' AND pd.language_id = '" . (int)$this->config->get('config_language_id') . "'");
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user