* @copyright 2010-2018 Webkul IN * @license https://store.webkul.com/license.html */ if (!defined('_PS_VERSION_')) { exit; } class WkFooterNotificationBlock extends Module { public function __construct() { $this->name = 'wkfooternotificationblock'; $this->tab = 'front_office_features'; $this->version = '1.0.2'; $this->author = 'Webkul'; $this->need_instance = 0; $this->bootstrap = true; parent::__construct(); $this->displayName = $this->l('Footer Subscription and Social Block'); $this->description = $this->l('Display Subscription and Social block in footer.'); $this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_); } public function hookFooter() { return $this->display(__FILE__, 'wkFooterNotificationSocialBlock.tpl'); } public function install() { if (!parent::install() ||!$this->registerHook('footer') ) { return false; } return true; } }