* @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 7541 $ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ if (!defined('_CAN_LOAD_FILES_')) exit; class BlockWishList extends Module { const INSTALL_SQL_FILE = 'install.sql'; private $_html = ''; private $_postErrors = array(); public function __construct() { $this->name = 'blockwishlist'; $this->tab = 'front_office_features'; $this->version = 0.2; $this->author = 'PrestaShop'; $this->need_instance = 0; parent::__construct(); $this->displayName = $this->l('Wishlist block'); $this->description = $this->l('Adds a block containing the customer\'s wishlists.'); $this->default_wishlist_name = $this->l('My wishlist'); } public function install() { if (!file_exists(dirname(__FILE__).'/'.self::INSTALL_SQL_FILE)) return (false); elseif (!$sql = file_get_contents(dirname(__FILE__).'/'.self::INSTALL_SQL_FILE)) return (false); $sql = str_replace(array('PREFIX_', 'ENGINE_TYPE'), array(_DB_PREFIX_, _MYSQL_ENGINE_), $sql); $sql = preg_split("/;\s*[\r\n]+/", $sql); foreach ($sql AS $query) if ($query) if (!Db::getInstance()->Execute(trim($query))) return false; if (!parent::install() OR !$this->registerHook('rightColumn') OR !$this->registerHook('productActions') OR !$this->registerHook('cart') OR !$this->registerHook('customerAccount') OR !$this->registerHook('header') OR !$this->registerHook('adminCustomers') ) return false; /* This hook is optional */ $this->registerHook('myAccountBlock'); return true; } public function uninstall() { return ( Db::getInstance()->Execute('DROP TABLE '._DB_PREFIX_.'wishlist') AND Db::getInstance()->Execute('DROP TABLE '._DB_PREFIX_.'wishlist_email') AND Db::getInstance()->Execute('DROP TABLE '._DB_PREFIX_.'wishlist_product') AND Db::getInstance()->Execute('DROP TABLE '._DB_PREFIX_.'wishlist_product_cart') AND parent::uninstall() ); } public function getContent() { $this->_html = '

'.$this->displayName.'

'; if (Tools::isSubmit('submitSettings')) { $activated = Tools::getValue('activated'); if ($activated != 0 AND $activated != 1) $this->_html .= '
'.$this->l('Activate module : Invalid choice.').'
'; $this->_html .= '
'.$this->l('Confirmation').''.$this->l('Settings updated').'
'; } $this->_displayForm(); return ($this->_html); } private function _displayForm() { $this->_displayFormView(); } private function _displayFormView() { global $cookie; $customers = Customer::getCustomers(); if (!sizeof($customers)) return; $id_customer = (int)(Tools::getValue('id_customer')); if (!$id_customer) $id_customer = $customers[0]['id_customer']; $this->_html .= '
'.$this->l('Listing').'
'; require_once(dirname(__FILE__).'/WishList.php'); $wishlists = WishList::getByIdCustomer($id_customer); if (!sizeof($wishlists)) return ($this->_html .= '
'); $id_wishlist = false; foreach ($wishlists AS $row) if ($row['id_wishlist'] == Tools::getValue('id_wishlist')) { $id_wishlist = (int)(Tools::getValue('id_wishlist')); break; } if (!$id_wishlist) $id_wishlist = $wishlists[0]['id_wishlist']; $this->_html .= '
'; $this->_displayProducts((int)($id_wishlist)); $this->_html .= ' '; } public function hookHeader($params) { Tools::addCSS(($this->_path).'blockwishlist.css', 'all'); return $this->display(__FILE__, 'blockwishlist-header.tpl'); } public function hookRightColumn($params) { global $smarty, $errors; require_once(dirname(__FILE__).'/WishList.php'); if ($params['cookie']->isLogged()) { $wishlists = Wishlist::getByIdCustomer($params['cookie']->id_customer); if (empty($params['cookie']->id_wishlist) === true || WishList::exists($params['cookie']->id_wishlist, $params['cookie']->id_customer) === false) { if (!sizeof($wishlists)) $id_wishlist = false; else { $id_wishlist = (int)($wishlists[0]['id_wishlist']); $params['cookie']->id_wishlist = (int)($id_wishlist); } } else $id_wishlist = $params['cookie']->id_wishlist; $smarty->assign(array( 'id_wishlist' => $id_wishlist, 'isLogged' => true, 'wishlist_products' => ($id_wishlist == false ? false : WishList::getProductByIdCustomer($id_wishlist, $params['cookie']->id_customer, $params['cookie']->id_lang, null, true)), 'wishlists' => $wishlists, 'ptoken' => Tools::getToken(false))); } else $smarty->assign(array('wishlist_products' => false, 'wishlists' => false)); return ($this->display(__FILE__, 'blockwishlist.tpl')); } public function hookLeftColumn($params) { return $this->hookRightColumn($params); } public function hookProductActions($params) { global $smarty; $smarty->assign('id_product', (int)(Tools::getValue('id_product'))); return ($this->display(__FILE__, 'blockwishlist-extra.tpl')); } public function hookCustomerAccount($params) { global $smarty; return $this->display(__FILE__, 'my-account.tpl'); } public function hookMyAccountBlock($params) { return $this->hookCustomerAccount($params); } private function _displayProducts($id_wishlist) { global $cookie, $link; include_once(dirname(__FILE__).'/WishList.php'); $wishlist = new WishList((int)($id_wishlist)); $products = WishList::getProductByIdCustomer((int)($id_wishlist), (int)($wishlist->id_customer), (int)($cookie->id_lang)); for ($i = 0; $i < sizeof($products); ++$i) { $obj = new Product((int)($products[$i]['id_product']), false, (int)($cookie->id_lang)); if (!Validate::isLoadedObject($obj)) continue; else { $images = $obj->getImages((int)($cookie->id_lang)); foreach ($images AS $k => $image) { if ($image['cover']) { $products[$i]['cover'] = $obj->id.'-'.$image['id_image']; break; } } if (!isset($products[$i]['cover'])) $products[$i]['cover'] = Language::getIsoById((int)($cookie->id_lang)).'-default'; } } $this->_html .= ' '; $priority = array($this->l('High'), $this->l('Medium'), $this->l('Low')); foreach ($products as $product) { $this->_html .= ' '; } $this->_html .= '
'.$this->l('Product').' '.$this->l('Quantity').' '.$this->l('Priority').'
'.htmlentities($product['name'], ENT_COMPAT, 'UTF-8').' '.$product['name']; if (isset($product['attributes_small'])) $this->_html .= '
'.htmlentities($product['attributes_small'], ENT_COMPAT, 'UTF-8').''; $this->_html .= '
'.(int)($product['quantity']).' '.$priority[(int)($product['priority']) % 3].'
'; } public function hookAdminCustomers($params) { require_once(dirname(__FILE__).'/WishList.php'); $customer = new Customer((int)($params['id_customer'])); if (!Validate::isLoadedObject($customer)) die (Tools::displayError()); $this->_html = '

'.$this->l('Wishlists').'

'; $wishlists = WishList::getByIdCustomer((int)($customer->id)); if (!sizeof($wishlists)) $this->_html .= $customer->lastname.' '.$customer->firstname.' '.$this->l('No wishlist.'); else { $this->_html .= '
'; $id_wishlist = (int)(Tools::getValue('id_wishlist')); if (!$id_wishlist) $id_wishlist = $wishlists[0]['id_wishlist']; $this->_html .= ''.$this->l('Wishlist').': '; $this->_displayProducts((int)($id_wishlist)); $this->_html .= '

'; return $this->_html; } } /* * Display Error from controler */ public function errorLogged() { return $this->l('You must be logged in to manage your wishlists.'); } }