name = 'producttooltip'; $this->tab = 'Products'; $this->version = '1.0'; parent::__construct(); $this->displayName = $this->l('Product tooltips'); $this->description = $this->l('Show how many people are watching a product page, last sale and last cart add'); } public function install() { if (!parent::install()) return false; /* Default configuration values */ Configuration::updateValue('PS_PTOOLTIP_PEOPLE', 1); Configuration::updateValue('PS_PTOOLTIP_DATE_CART', 1); Configuration::updateValue('PS_PTOOLTIP_DATE_ORDER', 1); Configuration::updateValue('PS_PTOOLTIP_DAYS', 3); Configuration::updateValue('PS_PTOOLTIP_LIFETIME', 30); return $this->registerHook('productfooter'); } public function uninstall() { if (!Configuration::deleteByName('PS_PTOOLTIP_PEOPLE') OR !Configuration::deleteByName('PS_PTOOLTIP_DATE_CART') OR !Configuration::deleteByName('PS_PTOOLTIP_DATE_ORDER') OR !Configuration::deleteByName('PS_PTOOLTIP_DAYS') OR !Configuration::deleteByName('PS_PTOOLTIP_LIFETIME') OR !parent::uninstall()) return false; return true; } public function getContent() { /* Update values in DB */ if (Tools::isSubmit('SubmitToolTip')) { Configuration::updateValue('PS_PTOOLTIP_PEOPLE', intval(Tools::getValue('ps_ptooltip_people'))); Configuration::updateValue('PS_PTOOLTIP_DATE_CART', intval(Tools::getValue('ps_ptooltip_date_cart'))); Configuration::updateValue('PS_PTOOLTIP_DATE_ORDER', intval(Tools::getValue('ps_ptooltip_date_order'))); Configuration::updateValue('PS_PTOOLTIP_DAYS', intval(Tools::getValue('ps_ptooltip_days'))); Configuration::updateValue('PS_PTOOLTIP_LIFETIME', intval(Tools::getValue('ps_ptooltip_lifetime'))); echo $this->displayConfirmation($this->l('Settings updated')); } /* Configuration form */ $output = '
'.$this->l('Product tooltips').'

'.$this->l('Display the number of people who are currently watching this product?').'

'.$this->l('Yes').'   '.$this->l('No').'

'.$this->l('Lifetime:').' '.$this->l('minutes').'


'.$this->l('Display the last time the product has been ordered?').'

'.$this->l('Yes').'   '.$this->l('No').'

'.$this->l('If no order yet, display the last time the product has been added to cart?').'

'.$this->l('Yes').'   '.$this->l('No').'

'.$this->l('Do not display events older than:').' '.$this->l('days').'


'.$this->l('Sample:').'

'; return $output; } public function hookProductFooter($params) { global $smarty, $cookie; $id_product = intval($params['product']->id); /* First we try to display the number of people who are currently watching this product page */ if (Configuration::get('PS_PTOOLTIP_PEOPLE')) { $date = strftime('%Y-%m-%d %H:%M:%S' , time() - intval(Configuration::get('PS_PTOOLTIP_LIFETIME') * 60)); $nbPeople = Db::getInstance()->getRow(' SELECT COUNT(DISTINCT(id_connections)) nb FROM '._DB_PREFIX_.'page p LEFT JOIN '._DB_PREFIX_.'connections_page cp ON (p.id_page = cp.id_page) WHERE p.id_page_type = 1 AND p.id_object = '.intval($id_product).' AND cp.time_start > \''.pSQL($date).'\''); if (isset($nbPeople['nb']) AND $nbPeople['nb'] > 0) $smarty->assign('nb_people', intval($nbPeople['nb'])); } /* Then, we try to display last sale */ if (Configuration::get('PS_PTOOLTIP_DATE_ORDER')) { $days = intval(Configuration::get('PS_PTOOLTIP_DAYS')); $date = strftime('%Y-%m-%d' , strtotime('-'.intval($days).' day')); $order = Db::getInstance()->getRow(' SELECT o.date_add FROM '._DB_PREFIX_.'order_detail od LEFT JOIN '._DB_PREFIX_.'orders o ON (od.id_order = o.id_order) WHERE od.product_id = '.intval($id_product).' AND o.date_add >= \''.pSQL($date).'\''); if (isset($order['date_add'])) $smarty->assign('date_last_order', $order['date_add']); else { /* No sale? display last cart add instead */ if (Configuration::get('PS_PTOOLTIP_DATE_CART')) { $cart = Db::getInstance()->getRow(' SELECT cp.date_add FROM '._DB_PREFIX_.'cart_product cp WHERE cp.id_product = '.intval($id_product)); if (isset($cart['date_add'])) $smarty->assign('date_last_cart', $cart['date_add']); } } } if ((isset($nbPeople['nb']) AND $nbPeople['nb'] > 0) OR isset($order['date_add']) OR isset($cart['date_add'])) return $this->display(__FILE__, 'producttooltip.tpl'); } } ?>