My_PeSePe Posted February 18, 2011 Share Posted February 18, 2011 En teoria no se donde va este modulo o si se puede poner para descargar . Pero os dejo este modulo creado por mi por si a alguien le hace falta . Se trata de dos archivos , yo os pongo mi ejemplo y vosotros aplicarlo como querais : rmfantasy.php <?php /* Block RM Fantasy - PrestaShop Author: Jose Alfonso Almagro Heerema Version: 0.1 */ class rmfantasy extends Module { function __construct() { $this->name = 'rmfantasy'; $this->tab = 'Blocks'; $this->version = 0.1; parent::__construct(); // The parent construct is required for translations $this->page = basename(__FILE__, '.php'); $this->displayName = $this->l('rmfantasy'); $this->description = $this->l('Añade Informacion Fiscal'); } function install() { if (!parent::install()) return false; if (!$this->registerHook('rightColumn') OR !$this->registerHook('leftColumn')) return false; return false; } /** * Returns module content * * @param array $params Parameters * @return string Content */ function hookRightColumn($params) { return $this->display(__FILE__, 'rmfantasy.tpl'); } function hookLeftColumn($params) { return $this->hookRightColumn($params); } } ?> rmfantasy.tpl <!-- MODULE Block rmfantasy --> ..::Titulo::.. Direccion1 Direccion2 Telefono : Email : [email protected] <!-- /MODULE Block rmfantasy --> Incluye un logo.jpg de dimensiones 17x17 .... Todos estos archivos van en una carpeta denominada rmfantasy ... Saludos y hasta mas ver Link to comment Share on other sites More sharing options...
femocaju Posted February 19, 2011 Share Posted February 19, 2011 Podrías explicar qué hace o poner algún ejemplo o captura para que nos hagamos una idea?Gracias por aportar desinteresadamente. Link to comment Share on other sites More sharing options...
Recommended Posts