261 lines
9.7 KiB
PHP
261 lines
9.7 KiB
PHP
<?php
|
|
// * @source See SOURCE.txt for source and other copyright.
|
|
// * @license GNU General Public License version 3; see LICENSE.txt
|
|
|
|
class ControllerAccountWishList extends Controller {
|
|
public function index() {
|
|
if (1 == 2) {
|
|
$this->session->data['redirect'] = $this->url->link('account/wishlist', '', true);
|
|
|
|
$this->response->redirect($this->url->link('account/login', '', true));
|
|
}
|
|
|
|
$this->load->language('account/wishlist');
|
|
|
|
$this->load->model('account/wishlist');
|
|
|
|
$this->load->model('catalog/product');
|
|
|
|
$this->load->model('tool/image');
|
|
|
|
if (isset($this->request->get['remove'])) {
|
|
$this->deleteWishlist((int)$this->request->get['remove']);
|
|
|
|
$this->session->data['success'] = $this->language->get('text_remove');
|
|
|
|
$this->response->redirect($this->url->link('account/wishlist'));
|
|
}
|
|
|
|
if (isset($this->request->get['clear'])) {
|
|
foreach ($this->getWishlistProductIds() as $product_id) {
|
|
$this->deleteWishlist($product_id);
|
|
}
|
|
|
|
$this->session->data['success'] = $this->language->get('text_clear');
|
|
|
|
$this->response->redirect($this->url->link('account/wishlist'));
|
|
}
|
|
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
$this->document->setRobots('noindex,follow');
|
|
|
|
$data['breadcrumbs'] = array();
|
|
|
|
$data['breadcrumbs'][] = array(
|
|
'text' => $this->language->get('text_home'),
|
|
'href' => $this->url->link('common/home')
|
|
);
|
|
/*
|
|
$data['breadcrumbs'][] = array(
|
|
'text' => $this->language->get('text_account'),
|
|
'href' => $this->url->link('account/account', '', true)
|
|
);
|
|
*/
|
|
$data['breadcrumbs'][] = array(
|
|
'text' => $this->language->get('heading_title'),
|
|
'href' => $this->url->link('account/wishlist')
|
|
);
|
|
|
|
if (isset($this->session->data['success'])) {
|
|
$data['success'] = $this->session->data['success'];
|
|
|
|
unset($this->session->data['success']);
|
|
} else {
|
|
$data['success'] = '';
|
|
}
|
|
|
|
$data['products'] = array();
|
|
|
|
$results = $this->getWishlistProductIds();
|
|
|
|
foreach ($results as $product_id) {
|
|
$product_info = $this->model_catalog_product->getProduct($product_id);
|
|
|
|
if ($product_info) {
|
|
if ($product_info['image']) {
|
|
$image = $this->model_tool_image->resize($product_info['image'], $this->config->get('theme_' . $this->config->get('config_theme') . '_image_wishlist_width'), $this->config->get('theme_' . $this->config->get('config_theme') . '_image_wishlist_height'));
|
|
} else {
|
|
$image = $this->model_tool_image->resize('placeholder.png', $this->config->get('theme_' . $this->config->get('config_theme') . '_image_wishlist_width'), $this->config->get('theme_' . $this->config->get('config_theme') . '_image_wishlist_height'));
|
|
}
|
|
|
|
$product_images = $this->model_catalog_product->getProductImages($product_info['product_id']);
|
|
|
|
if ($product_images) {
|
|
$additional_image = $this->model_tool_image->resize($product_images[0]['image'], $this->config->get('theme_' . $this->config->get('config_theme') . '_image_wishlist_width'), $this->config->get('theme_' . $this->config->get('config_theme') . '_image_wishlist_height'));
|
|
} else {
|
|
$additional_image = false;
|
|
}
|
|
|
|
$rent_prices = array_filter(array($product_info['price'], $product_info['price_2']), function($price) {
|
|
return (float)$price > 0;
|
|
});
|
|
|
|
$min_rent_price = $rent_prices ? min($rent_prices) : 0;
|
|
|
|
if ($product_info['quantity'] <= 0) {
|
|
$stock = $product_info['stock_status'];
|
|
} elseif ($this->config->get('config_stock_display')) {
|
|
$stock = $product_info['quantity'];
|
|
} else {
|
|
$stock = $this->language->get('text_instock');
|
|
}
|
|
|
|
if ($this->customer->isLogged() || !$this->config->get('config_customer_price')) {
|
|
$price = $this->currency->format($this->tax->calculate($product_info['price'], $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
|
|
} else {
|
|
$price = false;
|
|
}
|
|
|
|
if ((float)$product_info['special']) {
|
|
$special = $this->currency->format($this->tax->calculate($product_info['special'], $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
|
|
} else {
|
|
$special = false;
|
|
}
|
|
|
|
$data['products'][] = array(
|
|
'product_id' => $product_info['product_id'],
|
|
'thumb' => $image,
|
|
'additional_thumb' => $additional_image,
|
|
'name' => $product_info['name'],
|
|
'model' => $product_info['model'],
|
|
'stock' => $stock,
|
|
'price' => $price,
|
|
'price_n' => $product_info['price'],
|
|
'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']),
|
|
'min_price' => $this->currency->format($this->tax->calculate($min_rent_price, $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']),
|
|
'special' => $special,
|
|
'href' => $this->url->link('product/product', 'product_id=' . $product_info['product_id']),
|
|
'remove' => $this->url->link('account/wishlist', 'remove=' . $product_info['product_id'])
|
|
);
|
|
} else {
|
|
$this->deleteWishlist($product_id);
|
|
}
|
|
}
|
|
|
|
$data['fitting_room_count'] = count($data['products']);
|
|
$data['clear'] = $this->url->link('account/wishlist', 'clear=1');
|
|
$data['continue'] = $this->url->link('common/home');
|
|
|
|
$data['column_left'] = $this->load->controller('common/column_left');
|
|
$data['column_right'] = $this->load->controller('common/column_right');
|
|
$data['content_top'] = $this->load->controller('common/content_top');
|
|
$data['content_bottom'] = $this->load->controller('common/content_bottom');
|
|
$data['footer'] = $this->load->controller('common/footer');
|
|
$data['header'] = $this->load->controller('common/header');
|
|
|
|
$this->response->setOutput($this->load->view('account/wishlist', $data));
|
|
}
|
|
|
|
public function add() {
|
|
$this->load->language('account/wishlist');
|
|
|
|
$json = array();
|
|
|
|
if (isset($this->request->post['product_id'])) {
|
|
$product_id = $this->request->post['product_id'];
|
|
} else {
|
|
$product_id = 0;
|
|
}
|
|
|
|
$this->load->model('catalog/product');
|
|
|
|
$product_info = $this->model_catalog_product->getProduct($product_id);
|
|
|
|
if ($product_info) {
|
|
if ($this->customer->isLogged()) {
|
|
$this->load->model('account/wishlist');
|
|
|
|
$this->model_account_wishlist->addWishlist($product_id);
|
|
|
|
$total = $this->model_account_wishlist->getTotalWishlist();
|
|
} else {
|
|
if (!isset($this->session->data['wishlist']) || !is_array($this->session->data['wishlist'])) {
|
|
$this->session->data['wishlist'] = array();
|
|
}
|
|
|
|
$this->session->data['wishlist'][] = $product_id;
|
|
$this->session->data['wishlist'] = array_unique($this->session->data['wishlist']);
|
|
|
|
$total = count($this->session->data['wishlist']);
|
|
}
|
|
|
|
$json['success'] = sprintf($this->language->get('text_success'), $this->url->link('product/product', 'product_id=' . (int)$product_id), $product_info['name'], $this->url->link('account/wishlist'));
|
|
$json['total'] = sprintf($this->language->get('text_wishlist'), $total);
|
|
}
|
|
|
|
$this->response->addHeader('Content-Type: application/json');
|
|
$this->response->setOutput(json_encode($json));
|
|
}
|
|
|
|
private function getWishlistProductIds() {
|
|
if ($this->customer->isLogged()) {
|
|
$product_ids = array();
|
|
|
|
foreach ($this->model_account_wishlist->getWishlist() as $result) {
|
|
$product_ids[] = (int)$result['product_id'];
|
|
}
|
|
|
|
return $product_ids;
|
|
}
|
|
|
|
if (isset($this->session->data['wishlist']) && is_array($this->session->data['wishlist'])) {
|
|
return array_map('intval', $this->session->data['wishlist']);
|
|
}
|
|
|
|
return array();
|
|
}
|
|
|
|
private function deleteWishlist($product_id) {
|
|
if ($this->customer->isLogged()) {
|
|
$this->model_account_wishlist->deleteWishlist($product_id);
|
|
} elseif (isset($this->session->data['wishlist']) && is_array($this->session->data['wishlist'])) {
|
|
$this->session->data['wishlist'] = array_values(array_diff($this->session->data['wishlist'], array($product_id)));
|
|
}
|
|
}
|
|
|
|
public function old_add() {
|
|
$this->load->language('account/wishlist');
|
|
|
|
$json = array();
|
|
|
|
if (isset($this->request->post['product_id'])) {
|
|
$product_id = $this->request->post['product_id'];
|
|
} else {
|
|
$product_id = 0;
|
|
}
|
|
|
|
$this->load->model('catalog/product');
|
|
|
|
$product_info = $this->model_catalog_product->getProduct($product_id);
|
|
|
|
if ($product_info) {
|
|
if ($this->customer->isLogged()) {
|
|
// Edit customers cart
|
|
$this->load->model('account/wishlist');
|
|
|
|
$this->model_account_wishlist->addWishlist($this->request->post['product_id']);
|
|
|
|
$json['success'] = sprintf($this->language->get('text_success'), $this->url->link('product/product', 'product_id=' . (int)$this->request->post['product_id']), $product_info['name'], $this->url->link('account/wishlist'));
|
|
|
|
$json['total'] = sprintf($this->language->get('text_wishlist'), $this->model_account_wishlist->getTotalWishlist());
|
|
} else {
|
|
if (!isset($this->session->data['wishlist'])) {
|
|
$this->session->data['wishlist'] = array();
|
|
}
|
|
|
|
$this->session->data['wishlist'][] = $this->request->post['product_id'];
|
|
|
|
$this->session->data['wishlist'] = array_unique($this->session->data['wishlist']);
|
|
|
|
$json['success'] = sprintf($this->language->get('text_login'), $this->url->link('account/login', '', true), $this->url->link('account/register', '', true), $this->url->link('product/product', 'product_id=' . (int)$this->request->post['product_id']), $product_info['name'], $this->url->link('account/wishlist'));
|
|
|
|
$json['total'] = sprintf($this->language->get('text_wishlist'), (isset($this->session->data['wishlist']) ? count($this->session->data['wishlist']) : 0));
|
|
}
|
|
}
|
|
|
|
$this->response->addHeader('Content-Type: application/json');
|
|
$this->response->setOutput(json_encode($json));
|
|
}
|
|
}
|