Jump to content

Aprendiendo a crear módulos solucionado


Joan Albert

Recommended Posts

He conseguido crear un módulo pero cuando le doy instalar me da FATAL ERROR.

 

Alguien me puede indicar que hago mal....?

 

Gràcias.

 

 

<?php

 

if (!defined('_PS_VERSION_'))

exit;

 

class mimoduloheader extends Module

 

{

private $_postErrors = array();

 

public function __construct()

{

$this->name = 'mimoduloheader.php';

$this->tab = 'front_office_features';

$this->version = 1.5;

$this->author = 'Joan';

$this->need_instance = 1;

 

$this->_directory = dirname(__FILE__).'/../../';

parent::__construct();

 

$this->displayName = $this->l('mimoduloheader');

$this->description = $this->l('Este es mi módulo - a ver si lo puedo terminar');

}

 

public function install()

 

{

if (parent::install() == false OR !$this->registerHook('header'))

return false;

return true;

}

 

}

 

?>

Edited by Joan Albert (see edit history)
Link to comment
Share on other sites

He conseguido crear un módulo pero cuando le doy instalar me da FATAL ERROR.

 

Alguien me puede indicar que hago mal....?

 

Gràcias.

 

 

<?php

 

if (!defined('_PS_VERSION_'))

exit;

 

class mimoduloheader extends Module

 

{

private $_postErrors = array();

 

public function __construct()

{

$this->name = 'mimoduloheader.php';

$this->tab = 'front_office_features';

$this->version = 1.5;

$this->author = 'Joan';

$this->need_instance = 1;

 

$this->_directory = dirname(__FILE__).'/../../';

parent::__construct();

 

$this->displayName = $this->l('mimoduloheader');

$this->description = $this->l('Este es mi módulo - a ver si lo puedo terminar');

}

 

public function install()

 

{

if (parent::install() == false OR !$this->registerHook('header'))

return false;

return true;

}

 

}

 

?>

 

En todo caso asi:

 

<?php
if (!defined('_PS_VERSION_'))
exit;
class mimoduloheader extends Module
{
private $_postErrors = array();
public function __construct()
{
$this->name = 'mimoduloheader';
$this->tab = 'front_office_features';
$this->version = 1.5;
$this->author = 'Joan';
$this->need_instance = 1;
$this->_directory = dirname(__FILE__).'/../../';
parent::__construct();
$this->displayName = $this->l('mimoduloheader');
$this->description = $this->l('Este es mi módulo - a ver si lo puedo terminar');
}
public function install()
{
if (parent::install() == false OR !$this->registerHook('header'))
return false;
return true;
}
}
?>

Link to comment
Share on other sites

Madre mia,

 

perdona estoy despistado, muchas gracias !!

Un placer ayudarte y servirte!

 

Si das el tema como solucionado, edita el titulo del tema, editando el primer mensaje, pulsando en editar, y después en "Usar editor completo", añadiendo la palabra "Solucionado" al titulo, esto ayudara, a mantener una mayor organización en el foro.

 

Un saludo y recuerda que estaremos en el foro, para guiar

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...