From c0090969cead10f37b475f2d48aa4f3acd335d94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Gaillard?= 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'); + } + }