* @copyright 2007-2010 Prestashop SA * @version Release: $Revision: 1.4 $ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ if (!defined('_CAN_LOAD_FILES_')) exit; class blocksharefb extends Module { public function __construct() { $this->name = 'blocksharefb'; if(version_compare(_PS_VERSION_, '1.4.0.0') >= 0) $this->tab = 'front_office_features'; else $this->tab = 'Blocks'; $this->version = '1.0'; parent::__construct(); $this->displayName = $this->l('Block Share on Facebook'); $this->description = $this->l('Adds a block to display a link "Share on Facebook" on product pages.'); } public function install() { return (parent::install() AND $this->registerHook('extraLeft')); } public function uninstall() { //Delete configuration return (parent::uninstall() AND $this->unregisterHook(Hook::get('extraLeft'))); } public function hookExtraLeft($params) { global $smarty, $cookie, $link; $id_product = Tools::getValue('id_product'); if (isset($id_product) && $id_product != '') { $product_infos = new Product((int)$id_product, true, $cookie->id_lang); $smarty->assign(array( 'product_link' => urlencode($link->getProductLink($product_infos)), 'product_title' => urlencode($product_infos->name), )); return $this->display(__FILE__, 'blocksharefb.tpl'); } else { return ''; } } } ?>