From 57dce0c9686a1b9aeadf598f7b24d7cb20d7811b Mon Sep 17 00:00:00 2001 From: Francois Gaillard Date: Mon, 12 Dec 2011 13:41:38 +0000 Subject: [PATCH] [-] MO : #PSCFI-4389 : Block Advertising hookHeader added --- modules/blockadvertising/blockadvertising.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/modules/blockadvertising/blockadvertising.php b/modules/blockadvertising/blockadvertising.php index 81fc4026b..125c06e9e 100644 --- a/modules/blockadvertising/blockadvertising.php +++ b/modules/blockadvertising/blockadvertising.php @@ -224,9 +224,8 @@ class BlockAdvertising extends Module * @param array $params Parameters * @return string Content */ - function hookRightColumn($params) + public function hookRightColumn($params) { - $this->context->controller->addCSS($this->_path.'blockadvertising.css', 'all'); $this->context->smarty->assign('image', $this->context->link->protocol_content.$this->adv_img); $this->context->smarty->assign('adv_link', $this->adv_link); $this->context->smarty->assign('adv_title', $this->adv_title); @@ -234,11 +233,16 @@ class BlockAdvertising extends Module return $this->display(__FILE__, 'blockadvertising.tpl'); } - function hookLeftColumn($params) + public function hookLeftColumn($params) { return $this->hookRightColumn($params); } + public function hookHeader($params) + { + $this->context->controller->addCSS($this->_path.'blockadvertising.css', 'all'); + } + }