Jump to content

Modulo : Informacion Fiscal


My_PeSePe

Recommended Posts

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

38835_M5khSHKxNvqsoqvXiytv_t

Link to comment
Share on other sites

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