Bonjour à tous,

N'étant pas un expert en PHP, je m'adresse au forum pour savoir si quelqu'un peut m'aider pour ce "bug". Visiblement il y a une erreur de syntaxe dans la barre de navigation.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
 
if (!defined('_CAN_LOAD_FILES_'))
	exit;
 
class BlockMessage extends Module
{
	public function __construct()
	{
		$this->name = 'blockmessage';
		$this->tab = 'front_office_features';
		$this->version = 1.0;
		$this->author = 'xxxxx';
 
		parent::__construct();
 
		$this->displayName = $this->l('Block message');
		$this->description = $this->l('Adds a block to display message.');
	}
 
	public function install()
	{
		//Configuration::updateValue('PS_PAYMENT_LOGO_CMS_ID', 0);
		if (!parent::install())
			return false;
		if (!$this->registerHook('rightColumn'))
			return false;
		/*if (!$this->registerHook('header'))
			return false;*/
		return true;
	}
 
	public function uninstall()
	{
		//Configuration::deleteByName('PS_PAYMENT_LOGO_CMS_ID');
		return parent::uninstall();
	}
 
	/**
	* Returns module content
	*
	* @param array $params Parameters
	* @return string Content
	*/
	public function hookLeftColumn($params)
	{
		global $smarty, $cookie;
 
		return $this->display(__FILE__, 'blockmessage.tpl');
	}
 
	public function hookRightColumn($params)
	{
		return $this->hookLeftColumn($params);
	}
 
}
D'avance merci

cdt